Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vb database manager

Status
Not open for further replies.

test1357

Programmer
May 8, 2003
2
GR
hello all,

I would like to ask if you have in mind any database manager written in visual basic. What I want to do is to manage an ms access database through jet sql syntax. For example I would like to create a number of tables or other batch proccesses.
 
VB6 comes with visual data manager - sorry if I'm pointing out the obvious. One thing I do like about it is that it can create forms for your tables.
 
Through JET DDL you can create/alter tables, fields, indexes, etc.

.Execute "CREATE TABLE TestTable...."

Look up help on the keywords "CREATE TABLE" "CREATE COLUMN" "ALTER TABLE"

You can also do this through ADOX. Add a reference to the "Microsoft ADO Ext. 2.5 for DDL and Security"

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top