jspeirer Posted August 26, 2003 Posted August 26, 2003 I am creating a UI front end for our users to create databases, complete with tables and indexes, for their clients. After I open the connection, I create my database. If I don't close down the connection, when I create my table, do I have to qualify it with the database name. Or, will the program know where to create the table at? Quote
*Gurus* Derek Stone Posted August 26, 2003 *Gurus* Posted August 26, 2003 Working with multiple databases usually means executing the USE directive: USE databasename CREATE TABLE tablename ... Keep in mind that proper security should be in place so one user cannot access another user's database. Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.