2007-02-04, 05:33 PM
I've found database queries in XRecord suite that use syntax like:
select top 10 * from ...
SQLite seems to want this syntax:
select * from ... limit 10
Is there a syntax to accomplish this that can work for both SQLite and Access? If not, from within a plugin how can I ask gbpvr which database is currently in use? That way I can use the correct syntax for the current database.
select top 10 * from ...
SQLite seems to want this syntax:
select * from ... limit 10
Is there a syntax to accomplish this that can work for both SQLite and Access? If not, from within a plugin how can I ask gbpvr which database is currently in use? That way I can use the correct syntax for the current database.