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

LookupInt32() 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 LookupInt32 ( String sqlCommand, Int32 &output ) : void
sqlCommand String SQL query string for which to return a value.
output System.Int32 Variable to receive the value
return void
        public static void LookupInt32(String sqlCommand, out Int32 output)
        {
            output = Convert.ToInt32(Lookup(sqlCommand, "Halide"));
        }

Same methods

H3Sql::LookupInt32 ( String sqlCommand, String connectionStringName, Int32 &output ) : void