0
votes
1answer
74 views

How to share SQL LocalDb with other users on same machine?

I am looking for ways to access LocalDb database between users using the share command of sqllocaldb command utility but I cannot see the database created in one user in another. Here are my steps: ...
1
vote
1answer
105 views

How to move SQL LocalDB 2012 system database on different drive?

By default, SQL LocalDb creates all the system database under C:\Users profile. I need all the databases including (system databases master, msdb etc) on D:\drive. I know I can create User databases ...
0
votes
0answers
52 views

SQL Server 2012 SQLProject won't build when adding Geography query

I have a stored procedure that I am writing as a mock up for linking existing user gps to a road network I have uploade.. I have loaded southern california osm file into SQL Server 2012 ...
2
votes
2answers
1k views

ODBC connection to SQL Server 2012 LocalDB instance

We have a "legacy" application, which uses ODBC connections to an underlying database, which can be Access, Oracle or SQL Server. For unit (or, perhaps more properly, "integration") test purposes, I'd ...
3
votes
1answer
1k views

How do I copy SQL Server 2012 database to localdb instance?

I'm looking to copy a SQL Server 2012 Standard database to my localdb instance. I've tried the wizard which complains that localdb isn't a SQL Server 2005 or later express instance. I also did a ...
0
votes
1answer
173 views

Hide the database schema and data in deployed Lightswitch / SQL Server 2012 LocalDb

I am creating a 2-tier Lightswitch application which will be deployed via ClickOnce for single-user scenarios. The database schema and the data need to be protected from access by the users. I know ...
0
votes
1answer
310 views

Entity Framework doesn't save updates to the underlying database

I am using the following code to update clock in and clock out times in the record table but it doesn't save the data to the database. I checked the mdf file with sql management studio and there is no ...
0
votes
1answer
358 views

Disable LocalDB auto-upgrade

After connecting to a SQL Server 2008 R2 database using LocalDB (SQL Server 2012), now I cannot connect from SQL Server 2008 R2: The database 'Northwind' cannot be opened because it is version ...
1
vote
1answer
166 views

SQL LocalDB SELECT statement with multiple conditions

I created a stored procedure for my .NET project and it goes like this, ALTER PROCEDURE [dbo].[Search_PM_SELECTED] ( @acID varchar(50), @pmCat varchar(50), @pmTitle varchar(50), ...
3
votes
1answer
746 views

SQL2012 LocalDB: how to check in c# if it is currently installed?

How to check in c# code if LocalDB currently installed? also, how to check if SQLNCLI11 presents in system?
0
votes
1answer
514 views

SQl Server 2012 LocalDb Shared Access

I am considering adding LocalDB for data storage to my application. Background: 1) My Application has 2 parts. a. A Desktop Client. (Running Under the user that logged into the computer) b. NT ...
0
votes
2answers
884 views

Unable to connect to SQL LocalDB

I have a native C++ app within which I am trying to connect to a localdb instance using ADO. Having manually started my instance I can run sqllocaldb info v11.0 and see the database instance is ...
5
votes
1answer
976 views

nHibernate and SQL Server 2012 LocalDB

Is it possible to use LocalDB databases with NHibernate? If yes, what should be installed/configured? Currently when trying to use connection string like Data Source=(LocalDb)\v11.0;Initial ...
8
votes
5answers
9k views

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 ...
7
votes
2answers
8k views

Why can't I connect to a SQL Server 2012 LocalDB shared instance?

I'm trying to set up a SQL Server 2012 LocalDB (RTM, x64) shared instance on my Windows 7 x64 machine and I can't seem to connect to the shared instance. I'm using an Administrator command prompt for ...
0
votes
0answers
1k views

Install LocalDB with deployment project

I'm upgrading my application to use SQL Server 2012 Express LocalDB instead of SQL CE 4. I already have a setup project with a bootstrapper to install the requirements (.NET Framework, Windows ...
8
votes
2answers
6k views

LocalDB deployment on client PC

I am very intrigued by this new version of SQL Server Express. It's not clear (to me) what a setup program should do to deploy an application that use a LocalDB. Is it required to install SQL ...