hi everyone, i'm trying to use the Automatic SQL (maps) instead of the Explicit SQL and it's very easy to write and read from the database just writing the column name and binding it... but... how can i do query with this type of connection?
for example i have a table with
- DateTime
- Result (OK, KO)
and i want to get only the OK value within a date.
With Explicit SQL i would have done
SELECT * FROM [TableName] WHERE DateTime BETWEEN #2016-03-01 00.00.00# AND #2016-03-02 00.00.00# AND WHERE Result = OK
but how to do it with the Automatic SQL (maps)?
thank you