i already have a database called db1.mdb, and i use oledb to connect to it.
so how do i create a new table?
i already have a database called db1.mdb, and i use oledb to connect to it.
so how do i create a new table?
vb Code:
dim cmd as new oledbCOmmand("Create table ......", "Your Connection to the database here") try 'open the connection cmd.executeNonQuery() catch ex as exception messageBox.Show(ex.Message) finally 'close the connection end try