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

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

Same methods

H3Sql::LookupInt64 ( String sqlCommand, String connectionStringName, System.Int64 &output ) : void