Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the connection string for localdb for version 11

I'm trying to do the Code First Walkthrough of the entity framework ( http://blogs.msdn.com/b/adonet/archive/2011/09/28/ef-4-2-code-first-walkthrough.aspx ).

I have the latest SQL Server Express and when I check my versions available via command line (sqllocaldb info): I see localdbApp1 and v11.0. When I try to run the walkthrough with a few minor tweaks, I get a can't connect error.

My app.config looks like this:

<parameter value="Server=(LocalDB)\v11.0; Integrated Security=True; MultipleActiveResultSets=True" /> 

I wrote a simple connection test like below and the code returns the same SQL Connection error ((provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)).

new System.Data.SqlClient.SqlConnection("Data Source=(LocalDB)\v11.0; Integrated Security=True; MultipleActiveResultSets=True").Open(); 

I've tried replacing "Data Source=..." with "Server=..." but to no avail there.

Any ideas what the connection string should be?

like image 652
Bill Nielsen Avatar asked May 10 '12 18:05

Bill Nielsen


People also ask

What is the connection string for LocalDB?

The easiest way to use LocalDB is to connect to the automatic instance owned by the current user by using the connection string Server=(localdb)\MSSQLLocalDB;Integrated Security=true .

How do I find my database connection string?

Right-click on your connection and select "Properties". You will get the Properties window for your connection. Find the "Connection String" property and select the "connection string". So now your connection string is in your hands; you can use it anywhere you want.


2 Answers

  1. Requires .NET framework 4 updated to at least 4.0.2. If you have 4.0.2, then you should have

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft.NETFramework\v4.0.30319\SKUs.NETFramework,Version=v4.0.2

If you have installed latest VS 2012 chances are that you already have 4.0.2. Just verify first.

  1. Next you need to have an instance of LocalDb. By default you have an instance whose name is a single v character followed by the LocalDB release version number in the format xx.x. For example, v11.0 represents SQL Server 2012. Automatic instances are public by default. You can also have named instances which are private. Named instances provide isolation from other instances and can improve performance by reducing resource contention with other database users. You can check the status of instances using the SqlLocalDb.exe utility (run it from command line).

  2. Next your connection string should look like:

    "Server=(localdb)\v11.0;Integrated Security=true;" or

    "Data Source=(localdb)\test;Integrated Security=true;"

from your code. They both are the same. Notice the two \\ required because \v and \t means special characters. Also note that what appears after (localdb)\\ is the name of your LocalDb instance. v11.0 is the default public instance, test is something I have created manually which is private.

  1. If you have a database (.mdf file) already:

     "Server=(localdb)\\Test;Integrated Security=true;AttachDbFileName= myDbFile;" 
  2. If you don't have a Sql Server database:

     "Server=(localdb)\\v11.0;Integrated Security=true;" 

And you can create your own database programmatically:

a) to save it in the default location with default setting:

var query = "CREATE DATABASE myDbName;"; 

b) To save it in a specific location with your own custom settings:

// your db name string dbName = "myDbName";  // path to your db files: // ensure that the directory exists and you have read write permission. string[] files = { Path.Combine(Application.StartupPath, dbName + ".mdf"),                     Path.Combine(Application.StartupPath, dbName + ".ldf") };  // db creation query: // note that the data file and log file have different logical names var query = "CREATE DATABASE " + dbName +     " ON PRIMARY" +     " (NAME = " + dbName + "_data," +     " FILENAME = '" + files[0] + "'," +     " SIZE = 3MB," +     " MAXSIZE = 10MB," +     " FILEGROWTH = 10%)" +      " LOG ON" +     " (NAME = " + dbName + "_log," +     " FILENAME = '" + files[1] + "'," +     " SIZE = 1MB," +     " MAXSIZE = 5MB," +     " FILEGROWTH = 10%)" +     ";"; 

And execute!

A sample table can be loaded into the database with something like:

 @"CREATE TABLE supportContacts      (         id int identity primary key,          type varchar(20),          details varchar(30)     );    INSERT INTO supportContacts    (type, details)    VALUES    ('Email', '[email protected]'),    ('Twitter', '@sqlfiddle');"; 

Note that SqlLocalDb.exe utility doesn't give you access to databases, you separately need sqlcmd utility which is sad..

like image 194
nawfal Avatar answered Sep 24 '22 02:09

nawfal


I installed the mentioned .Net 4.0.2 update but I got the same error message saying:

A network-related or instance-specific error occurred while establishing a connection to SQL Server

I checked the SqlLocalDb via console as follows:

C:\>sqllocaldb create "Test" LocalDB instance "Test" created with version 11.0.  C:\>sqllocaldb start "Test" LocalDB instance "Test" started.  C:\>sqllocaldb info "Test" Name:               Test Version:            11.0.2100.60 Shared name: Owner:              PC\TESTUSER Auto-create:        No State:              Running Last start time:    05.09.2012 21:14:14 Instance pipe name: np:\\.\pipe\LOCALDB#B8A5271F\tsql\query 

This means that SqlLocalDb is installed and running correctly. So what was the reason that I could not connect to SqlLocalDB via .Net code with this connectionstring: Server=(LocalDB)\v11.0;Integrated Security=true;?

Then I realized that my application was compiled for DotNet framework 3.5 but SqlLocalDb only works for DotNet 4.0.

After correcting this, the problem was solved.

like image 33
Eduardo Fernandes Avatar answered Sep 22 '22 02:09

Eduardo Fernandes