make a DataBase?

rotaerc

New member
Joined
May 24, 2009
Messages
1
Programming Experience
Beginner
Hello Guys !!!!!

I am new on Visual Basic.net. ... I wanted to know how can I make a DataBase from ACESS to link in DataBase...I would appreciate a full code....Making Tables....linking them...


I am newbie :p


Ty !
 
It's not really for us to provide "the full code". If you want to learn then you should learn by doing. To create the database in the first place you will need to use ADOX. There are already plenty of examples around so you should just search for them.

As far as building the database schema, you can either use ADOX for that too or ADO.NET. If you choose the latter then you can simply create OleDbCommands to execute your SQL statements, e.g. CREATE TABLE. Access itself has a full SQL reference, as does the MSDN Library.
 

Latest posts

Back
Top