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

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

Same methods

H3Sql::LookupDecimal ( String sqlCommand, String connectionStringName, Decimal &output ) : void