What is the connection string for connecting MS Access 2010 (.accdb) database in VB.net.
相关问题
- 'System.Threading.ThreadAbortException' in
- how to use special characters like '<'
- C# to VB - How do I convert this anonymous method
- Scaling image for printing
- Is there a way to apply theme on converted access
相关文章
- vb.net 关于xps文件操作问题
- Checking for DBNull throws a StrongTypingException
- Using the typical get set properties in C#… with p
- How do we alias a Sql Server instance name used in
- Load a .NET assembly from the application's re
- C# equivalent of VB DLL function declaration (Inte
- What other neat tricks does the SpecialNameAttribu
- Automatically install updates with ClickOnce deplo
Did you connect to the database by using 'Tools->Connect to database' ?
If you have already done the above, try this:
Go to server explorer. And select connected database -> In its properties there is a connection string -> Copy it and paste into your code.
connectionstrings.com is a wonderful thing:
You may use
Server Explorer
of Visual Studio to get the connection string or take a look at the connection string.www.connectionstrings.com
this is a good site for connection strings for almost any application