Argentini.Halide.H3Sql.Lookup C# (CSharp) Method

Lookup() public static method

Look up a value from a database object. Returns only one string value, so query must only return one value. Uses the connection string named "Halide".
public static Lookup ( String sqlCommand ) : String
sqlCommand String SQL query string for which to return a string value.
return String
        public static String Lookup(String sqlCommand)
        {
            return Lookup(sqlCommand, "Halide");
        }

Same methods

H3Sql::Lookup ( String sqlCommand, String connectionStringName ) : String
H3Sql::Lookup ( String sqlCommand, String connectionStringName, Int32 timeout ) : String