Microsoft SQL Server Compact is a free SQL Server embedded database ideal for building standalone and occasionally connected applications for mobile devices, desktops, and Web clients. You can develop applications with SQL Server Compact using the ADO.NET provider, and there is tooling support in ...

learn more… | top users | synonyms (7)

0
votes
0answers
7 views

Is the XML parsing slow, or is the SQL insertion methodology the bottleneck?

Although I think it's likely that it's the volume of data that's causing the problem, and not the way we're sending/parsing it (and the fact that the device receiving the data is a 98-lb. weakling ...
0
votes
1answer
10 views

Why won't SQL Server CE for WebMatrix 3 allow me to manually add a row to a table in my database?

I haven't had this problem until I first tried to manually add data to a database since my upgrade to WebMatrix 3, so I don't know if this is a bug or some kind of fault prevention. I have defined a ...
1
vote
2answers
77 views

Error: Object Was Open - Delphi

I have the following issue, When ever I run this code in the procedure, getting a SQL from my SQL COMPACT DATABASE(sdf), it gives me an error "Object Already Open". How can I fix this. Below is my ...
0
votes
0answers
23 views

SQL-datatype for cell-values in a spreadsheet-like sql-structure?

I'm creating something that could be looked on as a spreadsheet, though it has many differences. Each column represents an object from an object-table. Objects-Table: id: Primary Key int name: ...
0
votes
1answer
9 views

EF5 code first migrations byte[] column

I am trying to create a data model that will work on both SQL Server 2008/2012 and SQLCE4. The problem i have is with binary data columns. SQLCE requires use of the 'image' column type, but this is ...
0
votes
2answers
15 views

There was an error parsing the query.when retrieving data from a .sdf-file

I am writing a program in C# using Visual Studio 2008 and gets an error when retrieving data from a .sdf file There was an error parsing the query in SqlCeConnection My code is SqlCeConnection ...
0
votes
1answer
11 views

Data conversion failed. [ OLE DB status value (if known) = 0 ]

I am working with Microsoft SQL CE, Windows Mobile application. I have one table with column type decimal. If through sql query I insert in this column numbers from 1 - 9 everything is fine. But if ...
0
votes
1answer
7 views

Host Visual C++ 2005 library DLLs in 4.0 application for SqlCompact

I have WPF Application Developed on MS VS2010 which connects on his own local DB (SqlCompact3.5) and Sql compact Dlls are very managed internally in solution.. The Issues starts when the application ...
0
votes
2answers
44 views

How to set up a database in a class

New C# dev here, and I'm working on my first desktop application. I have a class set up that will do all of my SQL Server CE database work. Inside of my class, I have a few static strings set up ...
1
vote
1answer
29 views

winforms DataDirectory location

I have a c# winforms app that uses SQL compact and here is the connection string for the DB: <add name="Test.Properties.Settings.TestManagerConnectionString" connectionString="Data ...
1
vote
2answers
36 views

Keyword not supported in SQL Server CE connection string [closed]

I'm trying to connect to a SQL Server CE database in a C# web application (VB 2012) using this connection string: using (SqlCeConnection conn = new SqlCeConnection(@"Data ...
1
vote
1answer
43 views

Exception when attempting to connect to SQL Server CE from C#

I'm an newbie who is trying to get learn some web programming. I'm making my site in VS 2012 using C#. I've got a database connected in the App_Data folder, using SQL Server CE 4.0. I'm attempting to ...
0
votes
1answer
48 views

Can't connect to SQL Server CE database

I have the following code, just to test connection: public void Test() { SqlCeConnection conn = new SqlCeConnection(@"Data Source=/Application/Database.sdf;"); try { conn.Open(); ...
0
votes
1answer
26 views

Sync local Database (sqlce) to remote sql server

I am trying to built the following but i have no idea where to start. I want to build a windowsphone 8 app which has a local database which contents can be edited by input fields. Now, once the user ...
1
vote
5answers
43 views

Selecting joined distinct/last

Ok, i have two tables, like this: Person: | ID | Name | +----+------+ | 0 | Carl | +----+------+ | 1 | Max | +----+------+ | 2 | Lars | Status | PersonID | Submitted | Status | ...
0
votes
0answers
18 views

SQL CE database on shared drive : Will speed of running be an issue?

I have a c# winform application that uses an SQL Compact edition database. The Database file (.sdf) is intended to reside in a shared drive, so is the application itself. Right now on my development ...
1
vote
1answer
30 views

SQL Server CE query fails to execute in c#, but works in DBMS

I am trying to run a bunch of SQL statements in sql query. The query and the code look as follows: private void cancelTestCaseCreationWizard() { string deleteTestCaseCmd = @" ...
0
votes
0answers
11 views

SQL Server CE Notification Services

I've been looking for a while but without finding any real answer. I'm trying to build an application which uses SQL Server CE for portability purposes, and I need to trigger an event when the ...
0
votes
2answers
26 views

Storing a tree structure in database, issue with cyclic references

I'm developing a business management system where I have a list of customers organized as a tree using a hierarchy style of management: Customer A -- Customer B -- Customer C -- Customer D ...
0
votes
0answers
24 views

SQL Server CE error when publishing to web server

I created a website with Microsoft WebMatrix 2 and Razor with a SQL Server CE database, it is my first web site with this type of technology, I was intermediate PHP programmer. Everything works great ...
0
votes
0answers
32 views

“Access to the database file is not allowed” from inside IE, but works fine from standalone app

I'm building an installation for an ActiveX control. When I try to use the deployed control in a local, mark-of-the-webbed web page (in IE8 on this VM) it tries to access an SQL CE database, but ...
0
votes
0answers
18 views

How to read sql ce(.sdf file) database/table from SSIS package?

I want to read .SDF file(3.5) from SQL Server Integration Service 2008. How can I do this? Please provide me any link/tutorials for this.
0
votes
2answers
16 views

SQL Server CE count number of rows in each table in a database

What query should I use if I want to get the number of rows in each table in a database. I am using SQL Server CE for my database.
0
votes
0answers
14 views

SQL Server CE : Move tables from on database to another

I have a .sdf database with a few tables. I need to move some of these tables to another .sdf file. I have been creating tables using only Visual Studio. How can I move the tables ?
0
votes
1answer
24 views

Update NTEXT column in SQL Server CE in windows phone

I'm trying to update definition but facing an exception SQL Server does not provide comparison of NETXT, XML, Image etc don't know how to handle it. My table structure looks like this: ...
0
votes
0answers
10 views

Hanging application with SQL Server CE 3.5 SP2 trying INSERT

I'm developping a C# application for mobile devices running Windows Handheld Embedded 6.5 Release 3.2.24012 and with a SQL Server CE 3.5 Service Pack 2 database. I'm suffering with a lock/hang of ...
0
votes
0answers
58 views

EF code-first migration: SqlCeException altering NTEXT column

My application uses Entity Framework 5.0 code-first on top of a Sql CE database. Until now, we have used Automatic Migrations to manage entity mapping changes. However, I now have a change for which I ...
1
vote
1answer
23 views

How to allow in the field with a unique constraint to enter a lot of null values ​​in SQL CE

create table test3 ( id int PRIMARY KEY, id2 int ); create unique index ndx_id2 on test3 (id2); For the purposes of unique indices, all NULL values are considered to different from all other NULL ...
0
votes
0answers
9 views

SQL CE & Windows CE : Best practices and naming conventions [closed]

I've done too much of research on this now. But in Vain . Can anyone point me to some of the links which gives the best practises and naming conventions for SQL CE and Windows CE ? Thanks in Advance. ...
0
votes
0answers
11 views

Creating a calendar table

I am using a SQL Compact edition database. My requirement is such that I need to get a calendar table, as in I'll have one colum, called manpower, the of the column headers should hod dates for 10 ...
0
votes
1answer
42 views

Slow winforms application : should I use a local dataset?

I have a c# winform application that accesses data from a database (SQL Server CE), manipulates data and stores it back. I have been something rather "noobish", as in my program retrieves data from ...
1
vote
1answer
47 views

There is a file sharing violation. SQL Server CE 3.5 SP2

I've been getting this random issue in my .NET CF application that uses a SQL Server CE 3.5 SP2 database. When the CF application starts up it performs database maintenance to verify the .SDF ...
0
votes
1answer
64 views

Adding a SQL Server CE dataset to reportviewer in VS 2012 express C#

Hello all and thanks in advance for reading. I am using VS 2012 express coding in C# and have an issue when adding data from a dataset (I use SQL Server CE) to a reportview. My code is this: private ...
0
votes
2answers
39 views

How can I store date only in datetime field in WebMatrix with Sql Server CE?

I was wondering if there was a way to store a date (example: 01/01/2013) as datetime without SQL Server CE adding the time (example: 12:00:00 AM). I could always store it as the string "01/01/2013" ...
1
vote
2answers
45 views

Delete parent with children in one to many relationship

I have a .NET4.0 application with Entity Framework 5.0 e Sql Server CE 4.0. I have two entities with a one to many (parent/child) relationship. I've configured it to cascade delete on parent removal, ...
1
vote
1answer
25 views

SQL Server CE date stored in string : how to compare

I have a database in which, I see that dates are stored in the form of strings. Would it be possible for me to compare those date (in the form of string ) in a query? For eg. column date1 stores ...
0
votes
1answer
52 views

AddOrUpdate throws “A foreign key value cannot be inserted” with one to many relationship

My application targets .NET 4.5 and uses EntityFramework 5.0, Sql Server Compact 4.0. I'm trying to seed my database with some entities, but it keeps throwing: ...
0
votes
0answers
13 views

sql ce: select what is not in table based on lookup table

I searched around and can't find exactly what I'm looking for so here goes... This is a SQLCE 4.0 database I have a table used to populate a work schedule. It looks like this: pk int, username ...
2
votes
1answer
40 views

error deleting from database

I have a SQL Server Compact database created through VS 2010 (Local Database File option). On form load (CategoryForm) I load the values from the database into the DataGridView1. I also add an extra ...
0
votes
1answer
48 views

SQLCE Incompatible Database Version

I have an SQLCE 4.0 database (sdf) file and when I trying doing a query on the database from my application (WPF) I get the following error. Incompatible Database Version. If this was a compatible ...
1
vote
1answer
32 views

unable to connect to sql server ce database

I am trying to open a SqlConnection for a CE (.sdf) database but it throws an exception: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The ...
0
votes
1answer
40 views

Get path to SQL Server Compact file from Entity Framework context?

I'm trying to programmatically backup my SQL Server CE database. Apparently, this should simply involve copying the database file. My first solution looked like this: var connectionString = ...
1
vote
2answers
66 views

Convert sql ce tables to .xls or .xlsx format

I have a c# windows application that makes use of a database in SQL Compact Edition 3.5 for data manipulation. I would like to convert each table in the database to an excel file. I realise that I ...
0
votes
2answers
52 views

Delete a database record along with its related records

I have a database of products, categories and "productsInCategories" looking something like: Users id█ name ▌ ▀▀█▀▀▀▀▀▀▀▀▌ 1 █ john ▌ 69█ jane ▌ Products id█ name █ cost █description▌ ...
0
votes
1answer
22 views

SQL Server CE error message

I passed the following query to SQL Server CE via C# code, I used the following query string: string query = "Create table R_and_R_2nd_(7518) (Manpower_Name NVARCHAR(50), Instance ...
0
votes
2answers
31 views

Conditional Insert?

This is a kind of follow-up to my other question: Delimited string of ids as a field or a separate table? I have a database containing a table of products, one of categories, and one like ...
0
votes
1answer
26 views

SQL CE query corresponding to a MYSQL query

I use the following query through c# code to execute an update operation in MYSQL: string query = "UPDATE Projects SET Manpower = CONCAT(Manpower," + "\'|" + manname + "\') WHERE Name=\'" + projname ...
0
votes
1answer
22 views

Database not found during making setup file

When I run my app from the project folder in bin\debug or bin\release, it works fine. Everything as well as my database works fine. But when I create a setup file with my debug or release files my ...
-2
votes
0answers
30 views

I have joined for four tables and i want use Combined cumulative for some columns in SQL Server?

select plitno, A, datils, 0, 0, 0 from table1 union all select critno, 0, 0, B, 0, 0 from table2 union all select klitno, 0, 0, 0, C, 0 from table3 union all select bgitno, 0, 0, 0, 0, D from ...
0
votes
1answer
26 views

Delimited string of ids as a field or a separate table?

I have a database in which I store a large amount of user-created products. The user can also create "views" which works as a container holding these products, lets call them categories. It would be ...

1 2 3 4 5 48