Tagged Questions
4
votes
2answers
404 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
96 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
862 views
Entity Framework Code-First: How to manually update the database?
I've build a little WPF demo app which uses EF Code-First to save its data in a SQL CE 4.0 DB. It works fine unless I remove a property from a model object. For example, if I remove "HosteBy" from ...
2
votes
1answer
556 views
Getting file version info in the Compact Framework
I have some code that needs to be able to find the version number of an assembly, given a string saying where it's located.
I can't get this to work:
Assembly assembly = ...
1
vote
1answer
62 views
CRUD operations on a SQL CE database
I have a SQL CE databse in a .net 4.0 WPF application, and nothing i do will write to the database. I can enter data directly, and view what i have entered in the application.
I have tried using a ...
1
vote
2answers
284 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
175 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
1answer
42 views
Character Problem Emulator's SqlCe
I am developing a pocket pc application by PP Emulator in .Net.There is a problem that i dont understand in SQLCE.I cant type turkish characters in Sqlce query analyzer and also if my query has a ...
0
votes
1answer
145 views
Entity Framework, SQL CE 4.0, and DB Test Automation
I want to perform "fast integration" (aka "desktop integration") tests of a project using EF 4.0/4.1 connected to SQL Server 2008. This means that I need to swap out the dependency upon SQL Server ...
0
votes
3answers
287 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
128 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
114 views
SQL CE vs System.Data.SQLite.dll
With new versions of both SQL CE and SQLite out of the door, what are the pros and cons of them nowadays? When should I chose which? Also in regards to .NET (if that matters).
0
votes
0answers
82 views
Transaction Problem in SqlCe/Pocket Pc Application
i am doing some inserts/updates in my pocket pc application into sqlce 3.5 sp2.But when i try to commit transaction,i encounter this error message.I have some datareaders in my function.
The ...
0
votes
1answer
310 views
A parameter is missing. [ Parameter ordinal = 1 ] error in Pocket PC Application
Following code doesnt work and raise error "A parameter is missing. [ Parameter ordinal = 1 ]".What s wrong with it?I am developing pocket pc application in vs 2008 and sqlce 3.5 sp1.
...
0
votes
1answer
63 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 ...