Hi, quick question.
Has anyone created an add on for Access that will allow one to perform SQL
queries on the fly without creating a new query object? All I'm looking
for is something that I can quickly type in the SQL code for a quick test
while I'm debugging.

Signature
Randy Jackson
http://fourcolorexplosion.com
pietlinden@hotmail.com - 12 Apr 2006 17:59 GMT
there's one in Access Developer's Handbook... the top of the form is a
textbox and the bottom shows the results.
david epsom dot com dot au - 12 Apr 2006 23:16 GMT
If you only want a quick lookup
?codedb.openrecordset("sql").fields(1)
(david)
> Hi, quick question.
>
> Has anyone created an add on for Access that will allow one to perform SQL
> queries on the fly without creating a new query object? All I'm looking
> for is something that I can quickly type in the SQL code for a quick test
> while I'm debugging.