How to make SQL databases for ASP .NET 2.0?

  • Thread starter Thread starter Flak Attack
  • Start date Start date
F

Flak Attack

Guest
I am creating a website and I have some experience with ASP .NET and Visual Basi .NET, but I don't know how to make sql databases.
I need a good software for designing sql databases (I have Microsoft Access but I'm not sure if I can use it to make sql databases).
so please give me any software name or some help on how to make sql databases.
 
You can use Access to make a database to connect to through ASP.net. You would use the ODBC option to attach to the tables. If you are comfortable with Access that may be your best choice.

You are not making SQL databases - you are making "a" database/data source that you can access through .net and run SQL queries against.

You could also download sql server express for free from MSFT's website but Access seems like it might be a better fit. When you open vb.net, you see the data source window. Go and add a data source - pick database and then under database connection pick Access database file.
 
Back
Top