Tagged Questions

7
votes
2answers
938 views

How can I use Sql CE 4 databases for functional tests

Due to the potential differences between Linq-to-Entities (EF4) and Linq-to-Objects, I need to use an actual database to make sure my query classes retrieve data from EF correctly. Sql CE 4 seems to ...
5
votes
1answer
656 views

C# integer primary key generation using Entity Framework with local database file (Sdf)

I'm writing a standalone application and I thought using Entity Framework to store my data. At the moment the application is small so I can use a local database file to get started. The thing is ...
4
votes
2answers
197 views

NHibernate QueryOver<> - Aggregate function over SubQuery

How can I write the following SQL statement using QueryOver<> syntax? SELECT COUNT(*) FROM ( SELECT FirstName,LastName FROM People GROUP BY FirstName, LastName ) as sub_t I ...
4
votes
2answers
367 views

How to speed up LINQ inserts with SQL CE?

History I have a list of "records" (3,500) which I save to XML and compress on exit of the program. Since: the number of the records increases only around 50 records need to be updated on exit ...
2
votes
2answers
103 views

Get file path from connection string

Is there any method exist to extract DB path from connection string? I need to check if DB files are exist at the beginning & back them up if file archive flag changed (file modified). Sample ...
2
votes
1answer
178 views

error with SqlCe Parameters

I have made MANY parameterised queries in my time on this lovely planet, and none have thrown an error like this... WTFudge?!?! ERROR: There was an error parsing the query. [ Token line number = 1, ...
2
votes
3answers
206 views

SQL CE Max Length

I need to store articles in an application for WP7. I just want to use a database so I can query by unread articles, etc, etc. I've run into one big problem with SQL CE in Mango-- there seems to be ...
2
votes
2answers
91 views

SqlCeServer: How to Store a Single Char?

I've got a column in my Microsoft SQL CE 3.5 SP2 database called Type that needs to store a single character. To do this, I have formatted the column as nchar(1), and storing the data works fine. ...
2
votes
2answers
105 views

Determine if a date is within 2 dates in sqlCE

I have an sqlCE field A, type text, that holds a date string in this format: 31/12/2011 11:29:09 Also, I have an sqlCE field B, type text, that holds a date string in this format: 04/04/2011 ...
2
votes
2answers
182 views

C# SqlCeException: One Line SQL to determine table exists

Following the guidelines presented in SO Question #167576, I constructed the following SQL query string in my C# WinForm application to determine if table RMCoil exists: using (SqlCeCommand cmd = new ...
2
votes
3answers
213 views

C# SqlCeDataReader rdata FieldCount

I am trying to see if an ID exists in a database in this case it's vetID. To see if the result of the SQL query is successfull I am trying to use rdata.FieldCount FieldCount always seems to return ...
2
votes
2answers
1k views

SQL Server CE 4 DataProvider not avaliable in server explorer

I have installed the sp1 for visual studio 2010 and installed sql server ce 4 runtime. But still not able to create connection to the sql ce database using standart data provider. This is how my ...
1
vote
2answers
516 views

C# SQL CE, Insert Statment Affects 1 row, but doesnt actually update the DB, Invalid Insert Query?

I've checked other stack overflow questions to find answers, but I just cant find a solution to this. I am trying to insert string data into a SQL CE (local database). I can read from the database, ...
1
vote
1answer
52 views

Foreign Keys, Private Keys MSSQL 1:1 and 1:Many issues

Am having some SQL (SqlCe) issues I was getting the following error: There was an error parsing the query. (1) ERROR:> [Token Line number = 1, Token Line offset 853, Token in error = @clID] ...
1
vote
2answers
213 views

SqlCeParameter return Auto ID (Primary Key)

I have an SQL SqlCeParameter statement for example: mySQLCommand1.CommandText = @" INSERT INTO clientSubjectiveComplaints (clientSubComplaintCreated) VALUES (@ClientSubComplaintCreated) "; ...
1
vote
1answer
29 views

Is there a c# library that supports the parsing and execution of T-sql scripts on SQL CE

I know SQL CE does not support transact sql. However, I would think there would be a library out there that can parse a transact sql file (at least a subset for tsql) and execute it for me. For now, ...
1
vote
1answer
144 views

Winforms dataset X sql ce 4

How can I use Windows forms dataset and sql server CE 4 ? I'm trying to drop tables from server-explorer to the dataset and getiing this message: Is there any workaround ?
1
vote
1answer
153 views

SqlCeDataReader parameter ordinal = 1

I a Parameter ordial = 1 error on this code. Can anyone explain it in this context? dbCon is correct as I can insert data to the database just trying out how to get it back no. if ...
1
vote
2answers
395 views

Error opening connection to SQL CE file on test machine

I'm testing my application on a non-administrator windows 7 account. The application is installed into program files. This includes the .sdf file I need to read from. I've got the connection string ...
1
vote
1answer
270 views

Does SQL CE 4 (CTP) support ambient transactions using System.Transaction namespace

From what I can see the drivers for SQL Server CE 3.5 for .Net and below do not support system.transactions. Has this changed for the new version of SQL CE version 4.
0
votes
0answers
149 views

Solution compiles but does not run on debug. The error appears part English part Spanish

I am posting this here because on the web I'd only found is how to fix this if you are running on x64 or web.config related stuff, but this is desktop and on a 32bits pc. Microsoft Visual Studio ...
0
votes
1answer
77 views

SQL C# Query Gets Slower With Each Iteration?

Is there anyway to make this SQL query faster? It searches a .sdf database for matching words. The Data is arranged in alphabetical order. Currently it takes about 10-15 seconds to search, the first ...
0
votes
1answer
76 views

i got native Exception on sqlCE - working with Windows-CE

I get Native Exception from sqlCE on Windows-CE and when I try to catch the error with try and catch I still get the error. When I install sqlCE again, it works fine. How do I properly catch this ...
0
votes
1answer
183 views

SqlCeException: Expression evaluation caused an overflow

There are other questions with similar sounding titles, but my case appears to be unique, so here goes: This problem seems to be centered on using Decimal values in my table. If I create a table and ...
0
votes
1answer
65 views

sqlCE questions and doubts on working offline

i heard of SQL CE. but i wonder how do i apply it to my current window app + sqlserver. Understanding: If the window app failed to connect to the hosting server(sqlexpress) through internet, then all ...
0
votes
1answer
327 views

C#: SqlCe Question, cannot update to database, but can read data

This code reads and updates the form fine when I run the program, but it does not update when I edit the values in the datagridview and click update. I am following a video tutorial series and this ...
0
votes
3answers
71 views

How can I select what columns come in from a DataSet into a DataTable?

Being new to working with Data, I hope I'm asking this properly. How can I select what columns come in from a DataSet into a DataTable? I know I can fill a DataTable by using... DataTable table = ...
0
votes
3answers
245 views

C#: SqlCeParameter DbType for nVarChar?

First off, I like specifying data types and I despise AddWithValue functions. I'm building an SqlCeServer 3.5 local database Application under .NET 4.0 that will run on users PC. When I created the ...
0
votes
1answer
116 views

New connection for each query or one connection for all queries? (CommandBehavior.CloseConnection vs CommandBehavior.Default)

I'm developing a text analysis desktop application, that intensively queries local database (MSSQLCE 3.5). As the user throws text in, it should react in real-time, so I'm using ADO.NET with pure SQL ...
0
votes
0answers
346 views

how can I update .sdf database file from a dataset?

I have two .sdf databases and I need to merge them. So, I loaded the data from the two files into datasets and then called the dataset.merge(); function. Now, I have the merged dataset ready but I am ...
0
votes
0answers
154 views

How to “extract” SqlCeUpdatableRecord out of SqlCeResultSet?

When I insert new record I use SqlCeUpdatableRecord, fill all fields and execute insert. When I update existing record I fill all fields too, but for SqlCeResultSet -- meaning, I am duplicating my ...
0
votes
2answers
99 views

SQL Server Compact Edition - Any way to compile the code in AnyCPU?

Either v3.5 or v4.0...it seems that there is either an x86 version or x64 version - is there a way to compile my c# code with the AnyCPU flag? I'd hate to have to peg my app to a certain ...
0
votes
1answer
62 views

Datasource load entire data from db?

I have created datasource from northwind database (SQLCE). Then i drag datasource item on form and grid was created. Question is: Does datasource load all data from dataset? Or maybe it loads part of ...
0
votes
3answers
486 views

EF 4.1 Sql CE Performance problems

I know, i'm on question mode tonight, I'm in the middle of building a desktop application. Luckily for me a choose a open architecture because i ran into the following problem: My application allows ...
0
votes
2answers
321 views

How to protect a *.sdf (sqlCE file) with a password

Is there a way to protect a *.sdf (sqlCE file) with a password or implement a similar security measure? i try this: if (!File.Exists(SDK)) { SqlCeEngine engine = new ...
0
votes
0answers
76 views

A null value in the Select list may cause a Native exception error message - need help

I saw this on microsoft support website A null value in the Select list may cause a Native exception error message in the ExecuteReader process intermittently. The exception is not caught ...
0
votes
1answer
2k views

Create firebird data source in Visual Studio

I have an app in c# using Visual Studio 2010 express and realized the sqlce database i was using does not meet all of our needs. I am trying to figure out how to add a firebird datasource and point ...
0
votes
3answers
376 views

How to find out SqlCe Column's length

I created a table using SqlCe, like this: SqlCeCommand createTableCmd = new SqlCeCommand(); createTableCmd.CommandText = "Create table docEntry (id nvarchar (70) not null PRIMARY KEY, " ...
-1
votes
2answers
184 views

c# DateTime Misunderstanding [closed]

No longer relevant: In one of the comments below the OP mentions a private object DateTime() { throw new NotImplementedException(); } slipping in. It happens . I have a DateTime field in a SqlCe ...
-2
votes
3answers
147 views

c# DateTime Not Valid in the Given Context

I posted a similar question but confusion set in so I feel the need to repost but with more clarity. I am trying to insert into a database (SqlCompact3.5) colum which requires a DateTime datatype. ...