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
3answers
27 views

Select more columns with MAX function in SQLCE

Need to find max value of id, and by this value I need to read value of others column. But it is influenced by another column type. I used this sql command: "SELECT * FROM Table WHERE id = (SELECT ...
2
votes
1answer
44 views

Cannot save to database or retrieve (right info) from it

I am saving data to the database "successfully", using: try { // Save the new Client now. Profile profile = new Profile() { Salutation = Salutation, FirstName = FirstName, ...
0
votes
1answer
18 views

Open SQL Server CE version 3.5 and 4

I am trying to open a .sdf file (SQL Server Compact) from my C# WinForm program and I get this error: {Incompatible Database Version. If this was a compatible file, run repair. For other cases ...
1
vote
1answer
22 views

SQL Server CE Database in Console Application

Is it possible to use a SQL Server Compact database (the same type of database that you use with WebMatrix-based websites) in a C# Windows console application? I'm really getting annoyed with XML ...
1
vote
2answers
92 views

A Parameter is missing. [Parameter ordinal = 1]

So i've been making a simple c# win forms application for something league of legends related and i've been using a .SDF Database which I'm very new with. When trying to make a search option I came ...
1
vote
1answer
19 views

Setting priority for a sql read/write?

I'm doing this in vb.net, but if there's a non-managed solution I'm open to that as well. I have a Windows Mobile 6.5 application that stores local data in a sql server compact database on some flash ...
0
votes
0answers
31 views

InvalidOperationException when trying to insert a string larger than 4000 chars into SQL Server CE database

The following is my logic (which adds a row of data to the database). This logic works, but when I have a string length larger than 4000 characters for log.Value.Message, it fails on rs.Insert. Why is ...
0
votes
0answers
21 views

Odd failure to create SQL Server CE .sdf file in LINQPad query

I'm using LINQPad with a custom assembly, behind which there is an SQL Server CE database which may or may not exist at the time. The custom assembly uses Entity Framework code-first with automatic ...
0
votes
2answers
86 views

Why dont changes to database save?

I have following C# code in a Console Application. Whenever I debug the application and run the query1 (which inserts a new value into the database) and then run query2(which displays all the entries ...
0
votes
2answers
43 views

How to convert row to columns?

I have the below table: PROCESS ID VOUCHER DATE CATEGORY_ID PROJECT AMOUNT ----------- ------------ ------------ ------- ------- 1001 12/03/13 ...
0
votes
0answers
28 views

Database options for android?

I am a CS major and I just recently decided to start putting some of my java knowledge to use by learning how to program with Android. I have just been doing tutorials and reading some books on how to ...
0
votes
1answer
31 views

Copying Datatable to SQL Server CE table

I know this question was asked before but I have a little different requirement. I need to copy data from SQL Server to a local application SQL Server CE file. I got the table data from main server ...
0
votes
1answer
13 views

SQL compact synchronization

I am synchronizing sql server and sqlCE database. once the synchronization is over, I need to delete the Sync Completed records from SqlCE database.(not from server). so that I can keep the db size ...
-2
votes
0answers
35 views

How to export an SDF-file to an Excel file (xls or xlsx) through c#? [closed]

I have an question, How do I export an SDF database to an excel file? Thanks!
2
votes
2answers
41 views

Entity Framewok 5 - working out if the database is sql server or sql CE (compact edition)

I have a function to allow an administrator to create and download database backup files (included below, but not necessary to read or follow in order to answer the question). Is there a way to tell ...
0
votes
1answer
19 views

Synchronization between SQL Server and SQL Server CE with only related data

I'm new to Microsoft SyncOrchestrator. I have 2 tables. with 1 to many relationship. Parent table has values (a, b, c, d) Child table has (a1, a2, a3, b1, b2, b3, c1, d1, d2, d3, d4) When ...
0
votes
2answers
23 views

How to convert Relative Path into absolute path in c#

I have stored Database in the main folder of my project, I am using Relative Path while i use that database. Now i need to convert this realtive path into absolute path at runtime I used tha following ...
2
votes
2answers
80 views
+50

Populate a combobox with value taken from SQL Server CE table

I've been working on this basic form for a while now and have hit my latest stumbling block. What works so far is the following: You input an ID into the text box, Click the Load button, select your ...
1
vote
1answer
40 views

Can't set precision and scale on decimal when creating SQL Server CE table with NHibernate

I'm using NHibernate mapping by code to create tables both on server (SQL Server 2008) and client (SQL Server CE 3.5). This one column Property(x => x.Latitude, c => { ...
-1
votes
0answers
20 views

how to store data permanently in sql compact database3.5 [closed]

i am using sql compact database 3.5, the data is being inserted successfully, but after sometime the data gets deleted automatically. Please help me in this problem.
0
votes
1answer
52 views

ERROR - The specified data type is not valid. [ Data type (if known) = varchar ] [duplicate]

I have recently installed SQL 2008 R2 CREATE TABLE TPERSONS( personid int PRIMARY KEY NOT NULL, lastname varchar(50) NULL, firstname varchar(50) NULL, salary money NULL, managerid int NULL -- foreign ...
0
votes
1answer
32 views

Entity Framework and SQL CE private deployment for a DLL

Our software works as an add-in for Autodesk Inventor. This means our application (consisting of DLL's) folder is completely separate from the EXE. The problem is with Entity Framework trying to load ...
1
vote
0answers
43 views

LINQ attempts to truncate variable value to length of comparison

The where clause in the LINQ statement below causes the following error when 'logLevel' has a value of "Error" Error message = An error occurred while executing the command definition. See the inner ...
0
votes
2answers
33 views

Could not load file or assembly 'System.Data.SqlServerCe'

I have a .Net Framework 3 Winforms application that works with a SQLServerCE database. I've just released my latest version, but on 2 of the users computers I got this message: Could not load file ...
0
votes
1answer
28 views

Error converting data type SQL Server CE

I have an object with the following data: { "ItemID": "0000000", "ConsignmentID": "0000000", "CountryCreateDate": "24/05/2013 3:20:02 a.m.", "Reference": "00000000", "Packaging": ...
-1
votes
2answers
79 views

Connection string for SQL Server Compact - windows home server

I'm using SQL Server Compact 4.0 and hosting the site on Windows Home Server 2011, program is written in C# - Visual Web Developer. I've tried every possible connection string variation that I can ...
0
votes
0answers
40 views

SQL query is not executed in SQL Server CE

I use simple .sdf as database and using SQL Server CE SqlCeConnection to connect to it. con.Open() dataAdapter = New SqlCeDataAdapter() dataAdapter.SelectCommand = New SqlCeCommand("SELECT DISTINCT ...
0
votes
1answer
29 views

EntityCommandExecutionException when returning a PagedList

Edit: I've solved the original problem, but it gives rise to another question The problem was with this line && (logLevel == "All" || logLevel == "Error") The LINQ query in 'list' ...
0
votes
0answers
30 views

EF or sql commands against both SQL CE and Sql Server

Issue backgorund: I want to design a new application that uses a web service with SQL Server behind it. The client application will access the data through the web service. Also it will synchronize ...
0
votes
1answer
33 views

SQL Server Management Studio related [closed]

I have multiple queries in SSMS and SQL Server. I will give you my pc status. I have installed SSMS 2008. I don't see any services or servers listed under SQL Server configuration manager. Inside ...
0
votes
1answer
20 views

Cannot create Sql Compact DB programmatically

I am trying to create an MVC4 application that affords the user to create a SQL Server Compact database on the fly. Here is my code straight out of MSDN: string connStr = "Data Source = ...
0
votes
0answers
54 views

does RhoMobile or PhoneGap or Mosync can work with SQL Server CE or SQLite database and does it work with barcode scanner manufacturer provided dll?

I am going to use RhoMobile or PhoneGap or MoSync framework to develop a mobile application taht will be deployed on device with Windows CE or Windows Mobile. This application should ready barcodes ...
0
votes
1answer
19 views

Problems faced in keeping SQL Compact Edition Database on another machine in same network

I am using SQL CE 3.5 for one of my project, the front end is WPF application which process the given files and dumps the data to SQL CE database. Presently application and DB is on same machine. ...
-1
votes
2answers
113 views

Compare a column with 2 other different columns

I'm searching a way to get the differences between 3 tables.The main task that i can't do is to compare a column form table a and depends on what it contains, it compare with table b and c on 2 ...
0
votes
2answers
51 views

The path is not valid. Check the directory for the database. - SDF file is in the local drive - C#

" The path is not valid. Check the directory for the database" I am getting the above error for just two files where the path name is c:\temp\sdf-1\mydatabase.sdf. The code works fine for almost all ...
1
vote
1answer
66 views

Why is this exception neither silent nor informational?

This legacy code is called from a gazillion places in the app: public void DBCommand(string dynSQL, bool Silent) { checkConnection(); SqlCeCommand cmd = ...
-3
votes
0answers
48 views

Best database approch in WindowsPhone 8 application and reduce first time data loading? [closed]

I wanted to do the following things in my windows phone 8 application; I have to create local database contains 30+ Master tables and 20+ transaction tables. Everytime tha app loads, these local ...
1
vote
1answer
37 views

How to connect to .sdf file in Winform application using C#?

I am trying to connect a .sdf file with my winform. here's what i am trying to do : SqlConnection con = new SqlConnection(); con.ConnectionString=@"Data Source=D:\TestWinform\MyDB.sdf;Persist ...
1
vote
1answer
56 views

Why can't SQL Server Compact Edition open an existing SDF file if my connection string contains the max database size keyword?

I keep seeing this exception: ex = {"Keyword not supported: 'max database size'."} When I try running the following code (exception is thrown on the LINQ query line): LogContext l = new ...
0
votes
1answer
59 views

CRUD Opertaions with SQL Server CE database on device with Windows CE 5

There are a smart device, OS of this device is Windows CE 5. I want to write a c# smart device application program that running on this device. C# program must communicate with a SQL Server CE ...
0
votes
1answer
31 views

T-SQL Query Counting Same Column Multipe Times

I am new to SQL and I am trying to build a SQL query against a SQL Server CE 4 database that counts the same column (CompanyName) multiple times based off its Active status (0 or 1). I need the Total, ...
1
vote
1answer
101 views

Least worst option to secure database connection string for distributed wpf application to users with local admin rights

I have tried to read about different solutions regarding this, and I understand that the way to go depends very much on each individual scenario. This was a good link: ...
1
vote
1answer
63 views

SQL Server Compact Edition 4.0: Error: 26 - Error Locating Server/Instance Specified

I have been developing a console application (C# / .Net Framework 4.0 / VS2012). I created a SQL Server Compact database (*.sdf) and added a connection string as: <connectionStrings> ...
0
votes
1answer
47 views

SQL Server Compact + Entity Framework Design Time Data

I have an application being designed with SQL CE and Entity Framework. Is there a practical way to make that data available at design time to databound controls in Visual Studio Express 2012 for ...
0
votes
0answers
29 views

SQL Server CE (Compact edition!) Group Table by Column1 & Concat Column2

I have table in SQL Server CE with 2 column: Column1 | Column2 -------------------------------------------------- 1039-F42F-87BF-723B-529E-6B76-DD92-5ED3 | 1 ...
0
votes
1answer
18 views

Query SQLCe Database with array

Say I have this: SELECT * FROM Articles WHERE ArtName = @par1 Here, @par1 would be an array. Now what I want to do, is querying the database for all records that have their ArtName contained in ...
1
vote
2answers
95 views

How to use Regular Expression in sql server?

Is it possible to make efficient queries that use regular expression feature set.I got data in my table which is not in correct format,EX:-In Title colum: Cable 180┬░ To 90┬░ Serial ATA Cable ...
0
votes
1answer
55 views

WPF + SQL Server Compact Debug and Deploy

I have a WPF project set up to use a local SQL Server Compact database through an ADO.NET Entity Data Model in Visual Studio Express 2012 for Desktop. The project works great, on first run I can load ...
0
votes
2answers
40 views

Is there any tool available to design and edit tables of SQL Server Compact Edition 4.0

Are there any tools available to design and edit tables in a SQL Server CE 4.0 database? I am using Visual Studio 2012, I can find the tables and its columns and properties etc. But seems I can't ...
0
votes
1answer
47 views

horizontal and vertical totals in a pivot query in ms sql

I am trying to do vertical and horizontal total of columns, please see the following query, I was able to do vertical totals. Select U_POD 'City', Sum([Customer TS Pending]) as CTST , ...

1 2 3 4 5 49