Tagged Questions
0
votes
0answers
7 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
1answer
20 views
Help me installing Microsoft SQL Server Compact 3.5 on WindowsCE 5.0
I want to install Microsoft SQL Server Compact 3.5 for Windows Mobile on a Windows CE 5.0 device
I installed int he desktop PC the file from
Download Center
Then I followed the instructions in
How ...
0
votes
1answer
28 views
Is disposing a SqlCeDataReader a good idea?
In trying to track down the cause of a Null Reference Exception which occurs only in certain situations, I came across this code:
SqlCeDataReader IdValsReader = IdValsCMD.ExecuteReader();
if ...
3
votes
2answers
85 views
How can I see the SQL sent to the database after the parameters have replaced their placeholders?
The first MessageBox.Show() below simply shows me the exact same thing as const string SQL_GET_VENDOR_ITEMS, which seems fine to me, but I'm getting, "There was an error parsing the query. [Token line ...
1
vote
2answers
115 views
Why would this query generate a file sharing violation?
The following code gives me the error (I get it from the MessageBox.Show() in the catch block)
"Exception in PopulateBla() : There is a file sharing violation. A
different process might be using ...
0
votes
2answers
83 views
Should I refactor this, or is my confusion cause to be cautious? [closed]
This SqlCe code looks awfully strange to me:
cmd.CommandText = "INSERT INTO departments ( account_id, name) VALUES (?, ?)";
foreach(DataTable tab in dset.Tables)
{
if (tab.TableName == ...
0
votes
1answer
54 views
SQL Server CE's DDL parser is very picky but secretive about what it is finding fault with
I keep getting "there was an error parsing the query" no matter what I try with my DDL.
So I need an expert in the SQL-Server-CE flavor of SQL to tell me which of the following is the preferred ...
0
votes
1answer
48 views
Why is there an err parsing this DDL, and why can't the engine be more specific about locating it?
With this DDL ("BLA" is a tablename in the form "CCR130329093342")
ALTER TABLE BLA ADD salvation float NOT NULL WITH DEFAULT
...I'm getting, "There was an error parsing the query. [Token line ...
-1
votes
2answers
111 views
Why am I getting, “A column ID occurred more than once in the specification”?
I've got code that creates a table if it doesn't exist and adds all necessary columns, but for cases where the user has an older version of the table, it adds some new
columns. Yet when that second ...
-1
votes
1answer
282 views
How can I determine whether a column exists in a SQL Server CE table with C#?
The legacy code does it this way:
public bool isValidField(string tableName, string fieldName)
{
bool retVal;
string tblQuery = string.Format("SELECT {0} FROM {1}", fieldName, tableName);
...
1
vote
2answers
75 views
Is this the optimal way to guard against failed DB commits?
I have a legacy method that keeps throwing an exception. It has a nested try|catch. Is this the best way to code that sort of thing:
public void DBCommand(string dynSQL, bool Silent)
{
...
3
votes
1answer
156 views
Why does disposing a SqlCeConnection both solve one exception and raise a different one?
When calling the same query method twice in a session of the app, I get "DBCommandExcept"
As an experiment, I decided to dispose of the connection object at the end of the method, to see if that was ...
3
votes
1answer
116 views
Using SQL Server CE 3.5 on Azure Cloud Service Hosting using web role
We have hosted a asp.net 4.0 application on Azure Cloud Hosting service using web role. We are using SQL Server CE 3.5 dll and inserting some data to .sdf file. Getting the following error message ...
0
votes
2answers
98 views
How can I determine whether a dataset has any tables in it without getting the “cannot find table 0” err msg?
I've got code like this:
DataSet QtyDS = null;
. . .
QtyDS = GetAllUPCDSDRecords(txtUPC.Text);
...that is blowing up with "cannot find table 0"
To try to prevent that, I've tried the following, ...
0
votes
1answer
43 views
How can I tell if my SqlCeDataReader contains any vals after calling SqlCeCommand.ExecuteReader()?
With the code below:
SqlCeDataReader myReader = cmd.ExecuteReader(CommandBehavior.SingleRow);
itemID = myReader.GetString(0);
packSize = myReader.GetString(1);
...I get an exception, "No data ...
0
votes
1answer
43 views
Why is my SQLCeCommand ExecuteReader failing?
With the following code I get a less-than-helpful err msg (all I can see of the err msg in the truncated title bar of the exception dialog is, "System.Data.SQLServer...")
string query = "SELECT * ...
0
votes
1answer
63 views
How can I determine what version SQL Server Compact a table is?
I have some .SDF tables that are created in a Windows CE app (Access table data is passed from a server app, and this is converted into SQL Server Compact records/tables).
I want to look inside them ...
1
vote
1answer
75 views
SQL Replication in C# mobile device application
I have a mobile application (CE) running on a Motorola Symbol 3090 which should allow for scanning of inventory items and changing their properties on our SQL server (The table has existed on the ...
0
votes
0answers
255 views
ExceptionCode: 0xc0000005 with sqlcereader
I have a Windows CE Device. I am trying to run an application which is using SqlServerCe. When I try to run ExecuteReader.Read() method it is throwing an exception like below:
Error
ExceptionCode: ...
0
votes
1answer
179 views
Can't get SQL Server CE to work with Visual Studio 2005 and Windows CE 5.0
I have been trying to make SQL Server CE work with Visual Studio 2005 for the past 4, 5 hours. but no luck. When I run my application I get the following error:
Can't find PInvoke DLL ...
0
votes
2answers
222 views
Connect to SQL Server CE from Visual Studio
I have a program which I deploy to an emulator from Visual Studio. At first launch the program create a database on the emulator.
Is the any ability to connect to this database from my computer? I ...
0
votes
0answers
199 views
.SDF file size growth upon sqlCeConnection.Open
We've got a mobile device application (in c#, .NetCE3.5, SQL Server CE 3.5.1.0).
It's working on a Microsoft Windows CE version 5.00 device, which is very short of memory (its memory card is about 26 ...
0
votes
0answers
283 views
WCF - System.Data.SqlServerCe was not found
I'm try to work on WCF to sync the mobile database with server database. I was using this tutorial. When i try to debug I got 'File or assembly name 'System.Data.SqlServerCe, Version=3.5.0.0, ...
0
votes
1answer
111 views
How to SET NOCOUNT ON in SQL CE using ADO.NET?
I want to set nocount on in Windows CE application which uses SQL CE.
Normally I would write a sproc and set nocount in it but SQL CE does not support sprocs.
Is it possible to suppress COUNT in ...
1
vote
3answers
209 views
Sdf file always being created as read only after installation on Windows Mobile
My windows mobile app has a local database file (database.sdf). The file that is created when the user installs the CAB file in their device. The installation works fine but when I try to open the sdf ...
0
votes
0answers
86 views
SQL Server CE - can shrink whilst db in use?
I've reviewed the documentation regarding SQL Server CE's Shrink() command, but it's not clear whether this can be safely used whilst other code may be accessing the db, or whether I have to enforce ...
0
votes
0answers
170 views
SQL Server Compact made an unsupported request to the host operating system
I have a .Net Compact Framework app with an in-device SQL Server CE database (.sdf). I have been working on this for past one year. Recently, I am getting
SQL Server Compact made an unsupported ...
1
vote
1answer
896 views
Windows CE 6.0 - Installing SQL Server CE 3.5 into the run-time image
I made an application that I put onto the hard disk of Win CE (the Compact Flash card). My problem is that the application is using the SQL Server CE 3.5 database but it looks like that the image is ...
0
votes
0answers
349 views
Windows CE 6.0 - USB Drivers , SQL CE 3.5 installing correctly, boot up
I built a new Windows CE image and placed two USB drivers. One for the USB printer and the second for some special device with digital and analog I/O ports.
I have two problems:
1. USB drivers at ...
1
vote
1answer
157 views
Not enough storage to complete this operation in SQL Server CE
I'm developing wince headless device application, in that I have two applications both should be running at a time and both are accessing same SQL Server CE .sdf file.
If I run one by one its works ...
-1
votes
1answer
234 views
SQL Server CE private deployment for C# class library used in multiple apps
I'm using SQL Server CE and the Entity Framework in a C# class library. This library is used in at least three applications, i.e. the "main" program, the unit tests and the integration tests.
We ...
-1
votes
1answer
263 views
Does SQL Server CE (local db) of Windows Phone 7.5 support triggers?
This seems stupid but still need to clear my doubt whether local db (SQL Server CE) of Windows Phone 7.5 support triggers.
I have found that SQL Server CE does not support triggers.
So for triggers ...
0
votes
1answer
99 views
40000 records in sdf - Performance
I'm using sqlce 3.5 in Datalogic memor.
Importing 40,000 records to a table from other sdf inside this
scanner, it takes for 3 minutes.
Searching a field in this table, it takes 4 seconds.
Is it ...
1
vote
1answer
735 views
SQL Replication from Win CE device to SQL Server 2008 R2
I have a Windows CE device that I'd like to replicate data to a SQL Server 2008 R2 database. I understand the basics of replication and I need to use MSDN's "Two-Server Topology". Where there is an ...
1
vote
1answer
73 views
which sql ce version is run on win ce 5
In Datalogic Memor 944201019
OS is win ce 5. How could I know or check which sql ce version is suitable for win ce 5? Please share me.
0
votes
1answer
226 views
Alphanumeric sorting for Sql Server CE [duplicate]
Possible Duplicate:
Sorting Alphanumeric field in SQL CE (Compact Edition) version 3.5
How to make alphanumeric sorting for Sql Server CE ?
Stored values example:
1,2,20,3,a1,a2,a20,a3
...
0
votes
4answers
3k views
Connection string with an SQL Server CE database
I'm trying to establish a connection with a database in a Windows CE 5.0 application and I'm using the Compact Framework 2.0
The database is located inside the project's folder:
C:\Documents and ...
1
vote
2answers
412 views
Saving data from a listbox bounded to a database in c#
I have a dataset bounded to a listbox in a Windows CE application using SQL Server CE.
There is only one table in the dataset named "Codigos" with two fields: an id and a "code" field.
I inserted ...
0
votes
1answer
151 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 ...
2
votes
1answer
192 views
Slow windows mobile app
I have windows mobile application that display information from an sql server ce. Normally takes about 6 sec to load a grid of 6 rows.
Recently I realized that if I open the db on the mobile using ...
1
vote
1answer
564 views
Windows CE 5.0 development environment
I have to create an application using a Datalogic mobile device that uses Windows CE 5.0
I need a database that should work with Windows CE 5.0 and in addition can also be used in a normal Windows ...
2
votes
1answer
317 views
Monotouch - Is it possible to use a SQL Server CE database in an iPad/iPhone project?
I've started to use Sqlite in my iPad project, however I would rather to use SQL Server CE database instead.
Does anyone know whether it is possible?
If so, have you got some simple instructions on ...
0
votes
1answer
508 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.
...
1
vote
1answer
332 views
Assembly Version Loading Problem and SQL CE
I have an application that utilizes SQL CE 3.5 and the Entity Framework from .NET 3.5.
We encountered a known issue with SQL CE 3.5 SP2 RTM that causes application crashes. As a result, we obtained ...
1
vote
2answers
651 views
Sql Server CE Insert fail without errors
i have a problem in inserting some data into a table.
I have done a program with a simple DB.
I use
c#
framework 3.5
sql server mobile
The program run on a GPRS device. Every day it receive a zip ...
4
votes
6answers
985 views
To close or not to close connection in database
I work with Windows-Mobile and Windows-CE using SqlCE and I dont know what better to do.
To open connection when the program open, run any query's... update...delete database and close the connection ...
0
votes
1answer
93 views
a weird sqlce error: data area pass to a system call is too small
I have developed a WinCE application which uses sqlce3.0. Recently I have gotten very strange error with a simple query like this;
select * from customers where name like 'h%';
I connected from ...
0
votes
1answer
390 views
WinCE and SqlServerCE database Connection
Dose windows mobile 6 SDK support sqlserverce database operations into MFC smart device application?
I can create database on sqlserverce using COM components, but I dont want to use it instead will ...
6
votes
1answer
1k views
Visual Studio 2008: Don't deploy SQL Server Compact 3.5 when debugging
I'm using VS2008 to create a Compact Framework application for a Windows CE 5.0 device (Datalogic Kyman). I'm using SQL Server Compact 3.5 in my application. However, I'm debugging on a Kyman that ...
2
votes
3answers
2k views
handling persistent storage and cold boots with ce 4.2
I have spent all Friday and Saturday on this and I am running out of ideas;
I have a project where I need to run sql ce and .net2.0 on a symbol 8146 device running windows ce4.2 (windows mobile 2003) ...


