I'm using a Odbc connection to a mysql server, and was wondering how I would go about checking if a table exists within my database, and if not, create it.
|
feedback
|
|
Use UPDATEFor the record, not all RDBMSs support
| ||||
|
feedback
|
|
Besides Vlad Romanscanu's approach to This approach does require some more client-side coding ... you can use this query:
NOTE in Mysql you might be tempted to leave out that final 'group by', I tend to be a bit an*l about it and leave it in, so I don't have unpleasant encounters when working on another DBMS. | |||||||
feedback
|
|
I don't know the syntax for mysql on this, but all the databases I've ever used provide a set of tables containing meta-data about the data. I.e. system tables. You can simply do a select count on the correct system table using the table name in a where clause to find out if it exists. There may be other ways as well. I'd suggest looking into the doco on mysql for information on the system tables and how to access them. Being mysql, it's probably quite simple. | |||
|
feedback
|