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

LookupString() public static method

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

Same methods

H3Sql::LookupString ( String sqlCommand, String connectionStringName, String &output ) : void