Create table in database from application.

  • Thread starter Thread starter Alfa & Omega
  • Start date Start date
A

Alfa & Omega

I have app and using Microsoft Access database (mdb)..
Now, after two months I figured out that I need one more Table in my database (yeah, stupid :) ).

Is there any way to create a new table in that database from my application?

I don't want that peple that are using my application now have to delete old database and use this,
new one... i'd just like to create another table...if it's possible

hope you understand my problem!

Best Regards,
Igor
 
I have app and using Microsoft Access database (mdb)..
Now, after two months I figured out that I need one more Table in my database (yeah, stupid :) ).

Is there any way to create a new table in that database from my application?

I don't want that peple that are using my application now have to delete old database and use this,
new one... i'd just like to create another table...if it's possible

hope you understand my problem!

Best Regards,
Igor

Open a connection and issue a "CREATE TABLE Foo(...)" over it.
 
Back
Top