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