Argentini.Halide.H3Sql.LookupInt16 C# (CSharp) Метод

LookupInt16() публичный статический Метод

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 LookupInt16 ( String sqlCommand, Int16 &output ) : void
sqlCommand String SQL query string for which to return a value.
output System.Int16 Variable to receive the value
Результат void
        public static void LookupInt16(String sqlCommand, out Int16 output)
        {
            output = Convert.ToInt16(Lookup(sqlCommand, "Halide"));
        }

Same methods

H3Sql::LookupInt16 ( String sqlCommand, String connectionStringName, Int16 &output ) : void