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

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

Same methods

H3Sql::LookupDateTime ( String sqlCommand, String connectionStringName, System.DateTime &output ) : void