Re: EuSQL: Multiple Statements per Query?
- Posted by Matt Lewis <matthewwalkerlewis at gmail.com> Dec 02, 2005
- 484 views
cklester wrote: > > Matt, is it possible to issue multiple statements during a query? That is, can > I, with one query, create a database, its tables, and their fields? No. You need to run them separately. I suppose that you could write a routine to do this for you, looking for semi-colons (which are the standard statement terminators for SQL) and running each statement separately. Matt Lewis