1
vote
1answer
97 views
A question about program design.
Hello!
I'm developing a Windows Mobile WinForm application that uses Sql Server CE 3.1 with .NET Compact Framework 2.0 SP2 and C#.
I have a form that has a SqlCeConnection object …
1
vote
1answer
21 views
Retreving an image stored on SQl Server CE 3.1
Hello!
I'm developing a WinForm app for Windows Mobile 6.0 with C#, .NET Compact Framework 2.0 SP2 and SqlServer CE 3.1.
I have this code that is not working:
using (SqlCeDataRe …
0
votes
1answer
35 views
SQL Server CE rollback does not undo delete.
I am using SQL Server CE 3.5 and C# with the .NET Compact Framework 3.5. In my code I am inserting a row, then starting a transaction, then deleting that row from a table, and then …
1
vote
2answers
98 views
Deploy SqlCe with my Windows Mobile app
I've written a Windows Mobile Standard/Smartphone app (my first) that uses a SQL Server Compact Edition database as the backend. I had no problem testing in the emulator in Visual …
0
votes
2answers
89 views
SQL Server statement with subselect is invalid
Hey, I am using iBATIS with SQL Server Compact Edition 3.5 and try to do a subselect
INSERT INTO FORMINSTANCE (ID, ID_FORM)
SELECT #ID#, f.ID
FROM FORM f
WHERE ID_PROCESS …
0
votes
1answer
47 views
Sql Server CE version installed on Windows Mobile 6 Rom
Hello!
Which is the version of SQL Server CE installed on Windows Mobile 6? I think is SQL Server 2005 Mobile Versión 3.0.
If I use a database of this version (3.0), will it work …
0
votes
1answer
164 views
SQL Server Compact Edition with Entity Framework
I try to use SQL Server Compact Edition with Entity Framework in Visual Studio 2008 SP1. Here's what I do:
1) I create a new project, of type Console Application.
2) I right-clic …
0
votes
2answers
51 views
How to subselect in where statement in SQL Server CE?
Hi,
i have the following select statement to get the last login from the user table. this works very well under sqlite, now im porting the database and have Compact Edition from M …
0
votes
1answer
80 views
Bulk Insert In SQLCE
Hi,
i am new at SQLCE and using Visual Studio 2008,SQLCE 3,5.I want to know that what the best way of inserting bulk records into sqlce database?Does BULK INSERT statement work fo …
1
vote
0answers
11 views
SQL Server CE nvarchar foreign keys with trailing whitespace
In SQL Server CE, foreign key constraints on nvarchar fields are only enforced after dropping the trailing whitespace. This means that if the PK is "foo " I can insert "foo" into t …
0
votes
1answer
44 views
NHibernate, WCF & SqlServerCE - Exception thrown loading driver
Background
I have a BLL DLL that uses NHibernate. I share the same BLL between a client application and the WCF service (even though the client runs on another machine).
I can s …
1
vote
3answers
98 views
.Net Source Debugging on Windows 7
We are trying to debug through a Sql Server CE issue on a Windows 7 Enterprise RTM (64-bit) desktop running the .Net Framework 3.5, SP1. The application is crashing consistently an …
0
votes
1answer
58 views
Sql Server CE 3.5 and .NET Compact Framework 2.0 SP2
Hello!
Can I use Sql Server CE 3.5 with .NET Compact Framework 2.0 SP2? Visual Studio 2008 SP1 only supports this version of SQLServer CE, isn't it?
Thank you
0
votes
0answers
35 views
CHECK/NOCHECK for Sql Compact Edition
I am attempting to wipe and repopulate test data on SQL CE. I am getting an error due to FK constraints existing. Typically in Sql2005 I would
ALTER TABLE [tablename] CHECK/NOCH …
3
votes
2answers
172 views
Data paging in SQL Server CE (Compact Edition)
I am writing a wpf destop application, and would like to use SQL Server CE as a backend. I'm trying to come up with a good way to do efficient data paging. In SQL Server Express, …
