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.
public static LookupInt64 ( String sqlCommand, String connectionStringName, System.Int64 &output ) : void
sqlCommand String SQL query string for which to return a value.
connectionStringName String Name of a connection string in the Web.config file.
output System.Int64 Variable which receives the result.
return void
        public static void LookupInt64(String sqlCommand, String connectionStringName, out Int64 output)
        {
            output = Convert.ToInt64(Lookup(sqlCommand, connectionStringName));
        }

Same methods

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