| Thread | Last Post | Replies |
|
| Disk IO error when db stored on SD Card. | 30 Nov 2006 09:28 GMT | 8 |
I am getting an occasional disk IO error when power is restored to handheld. Using SQL CE 2.0 with .NET CF on Symbol MC9090 handheld (WM5). We store all the databases and temp files on a SanDisk 2G SD card. When power is restored, we even close the connection and reopen
|
| ado.net and oledb - SELECT performance | 29 Nov 2006 15:16 GMT | 5 |
Has anyone developed applications, using both ado.net and oledb, to access sql compact? What has your experience been with regards to performance? In our case, using oledb has been consistently slower than ado.net, at least for SELECTs. Is the oledb provider a ...
|
| SQL Server Mobile Table Index | 28 Nov 2006 18:21 GMT | 4 |
I am serching table entries in a replicated Table (SQL Server 2005 merge replication download only) by scanning the index. everything works but if I have new entries on the Table it seems that the index will not been updated and the new entries will not been found. The
|
| Datagrid with bool column | 27 Nov 2006 22:01 GMT | 2 |
As the DataGridBoolColumn is not supported in the CF ( is this correct) I like to find a way to find a user friendly way to edit a boolean in a grid. If is now displayed as True / False. Are there any samples of a Boolean columnstyle?
|
| nVarchar limitations using OLEDB provider | 27 Nov 2006 18:28 GMT | 14 |
When I use the Microsoft.SQLSERVER.MOBILE.OLEDB3.0 provider to connect to a SDF file, , i cannot open table with one or more nVarchar columns designed wider than 127 chars. Is this a known / documented limitation?
|
| Can I have 2 Subscription in a SQL CE Database? | 27 Nov 2006 16:19 GMT | 1 |
I have a smart device VB.NET solution. In SQL Server 2000 i have a database 4 masters tables (Products, Customers, Company, Salesman). This tables are uploaded in the SQL CE using a replication. This tables are read only. Now I have 2 more tables (Inventory) that are the ...
|
| SQLCE errors | 27 Nov 2006 04:53 GMT | 1 |
If I run a query that returns an error, say a SELECT on a non-existent column, I receive the following error message: The column name is not valid. [ Node name (if any) = ,Column name = x ] Is there any way to retrieve the offending column name?
|
| SqlCeDataReader and oledb | 27 Nov 2006 04:43 GMT | 2 |
I have an application written in c# that uses the SqlCeDataReader class to iterate through the result set of a query (all reads, no writes, no backward scrolling), and an equivalent c++ app that uses oledb to perform the same task . The performance of the c++ app is about 3.5 ...
|
| DB Connection | 24 Nov 2006 21:20 GMT | 1 |
I’m VC++ programmer and I want to use database in Windows mobile, Is there any way to use MS Access in Win mobile or I must use MS SQL server Mobile? I think we cannot create ODBC link in Win mobile, then how can we access to SQL server or other mobile DB engine?
|
| One question about Listview... | 22 Nov 2006 20:55 GMT | 2 |
Sorry, I am unable to fund a certain discussion group for basic VB.NET questions...if you can direct me to the source it will be appreciate it. However, I have one stupid question in terms of ListView and just my luck I don't know how to solve that problem.
|
| save image to SQL CE 3.0 | 21 Nov 2006 23:10 GMT | 1 |
Hello all I am using VS2005/C#/SQLCE3.0. I am trying to insert and retrieve a jpg image using the SQLCE 3.0 database. what I would like to do is open a image file to a stream and insert that stream into the database, I am thinking I am going to have to serialize/deserialize it
|
| SQLCeConnection | 21 Nov 2006 20:55 GMT | 21 |
This is the code I am using: Private Sub frmInventoryTransfer_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim objConn As SqlCeConnection = Nothing
|
| IID_ISSCECompact | 21 Nov 2006 13:40 GMT | 1 |
I looked in "ssceoledb30.h" and I saw these lines of code: // PUBLISHED: Provider Specific Interfaces // IID_ISSCECompact // NOTE: removed as per raid 9395
|
| How to read data from stand alone SQL CE database on mobile device from VB.net 2005 | 20 Nov 2006 18:20 GMT | 5 |
I have a stand alone SQL CE database on my windows mobile device. OS = WM 5 Dutch. I can alter teh local database on the mobile device which will be used by persons who will store data when they visit a client.
|
| Subquery before FROM | 18 Nov 2006 18:25 GMT | 1 |
This kind of query works well with Access: SELECT Field1, (SELECT Field2 FROM Table2 WHERE Key=1) AS Field2 FROM Table1 But when I try execute it with SQL Server Everywhere it says "Token in error = SELECT".
|