Tagged Questions
The sql-server-mobile tag has no wiki summary.
4
votes
6answers
503 views
Database engines Comparison - Windows Mobile
What are the different database options on Windows Mobile available?
I have used CEDB and EDB for linear dataset needs.
I have heard of SQL server 2005 Mobile edition. But what are the advantages ...
2
votes
1answer
705 views
Accessing an SDF SQLServer Mobile file from Java
Here at work we want to access the data inside a .sdf file generated in a PDA with SQLServer Mobile Edition. We use the SqlJDBC4 packet for JDBC but can't get into the server. We know it's running ...
2
votes
3answers
2k views
How to read remote XML file the most efficiently way?
i am developping a little app that retrieves an XML file, located on a remote server (http://xxxx.com/myfile.xml)
This file is relatively big, and it contains a big list of geolocations with other ...
1
vote
1answer
458 views
Is it safe to open the same .sdf database file from two WinMo different applications?
I have two Windows Mobile 6.1 applications that use the same MS SQL Server Mobile database. They might select and update data in the database at the same time. The database is kept in one .sdf file.
...
0
votes
3answers
234 views
How to use the same parameter more than once in a query
I want to run a query similar to this one on a SqlCE database:
SELECT t.Field1, t.Field2
FROM MyTable t
WHERE t.Field1 = @Param
UNION ALL
SELECT t2.Field1, t2.Field2
FROM MyOtherTable t2
WHERE ...