Which Database supports for VB.Net?
-
2012年5月8日 上午 11:14
Hi,
I am doing my project in Visual studio 2008 and language is vb.net 9.0 . Now I should use database to my project . Which database supports for VS 2008 and vb.net? Is it supports My SQL, SQL Server or some other databases . Please refer me free database server .
Waiting for your reply....
Advance Thank !!!!!!!!
所有回覆
-
2012年5月8日 上午 11:33
VS includes the free Express Edition of SQL Server. You may already have it installed (e.g. named instance "localhost\SQLEXPRESS").
Regardless of what database you choose, it is best to use a managed provider in .NET code (System.Data.SqlClient in the case of SQL Server). For databases other than SQL Server, a managed provider may be included with database client software. You can use still use ODBC (System.Data.Odbc) for data access if a managed provider is not available.
Dan Guzman, SQL Server MVP, http://weblogs.sqlteam.com/dang/
- 已提議為解答 Dmitri KorotkevitchMVP 2012年5月8日 下午 02:51
- 已標示為解答 Iric WenEditor 2012年5月16日 上午 02:22

