Jan 23, 2003 #1 nandamurisrihari Programmer Joined Dec 25, 2002 Messages 25 Location BH how can i drop a query like droping a table using following code "dba.Execute "DROP TABLE " & TableNAME & "" regards srihari
how can i drop a query like droping a table using following code "dba.Execute "DROP TABLE " & TableNAME & "" regards srihari
Jan 24, 2003 #2 mp9 Programmer Joined Sep 27, 2002 Messages 1,379 Location GB You still use DROP TABLE, i.e. to drop a query called qryDel the SQL would be: Code: DROP TABLE qryDel; I know it seems strange, that's just the way it is! http://www22.brinkster.com/accessory/ Upvote 0 Downvote
You still use DROP TABLE, i.e. to drop a query called qryDel the SQL would be: Code: DROP TABLE qryDel; I know it seems strange, that's just the way it is! http://www22.brinkster.com/accessory/
Jan 27, 2003 Thread starter #3 nandamurisrihari Programmer Joined Dec 25, 2002 Messages 25 Location BH Hi, we can use the following code for deleting a query "dba.QueryDefs.Delete QueryName" this will work anyway thanks a lot for helping me out cheers srihari Upvote 0 Downvote
Hi, we can use the following code for deleting a query "dba.QueryDefs.Delete QueryName" this will work anyway thanks a lot for helping me out cheers srihari