1
vote
1answer
70 views
Multiple Connection Types for one Designer Generated TableAdapter
I have a Windows Forms application with a DataSet (.xsd) that is currently set to connect to a Sql Ce database. Compact Edition is being used so the users can use this application …
0
votes
4answers
74 views
+150
add row to a BindingSource gives different autoincrement value from whats saved into DB
I have a DataGridView that shows list of records and when I hit a insert button, a form should add a new record, edit its values and save it.
I have a BindingSource bound to a Dat …
1
vote
2answers
15 views
Looking for tool that can see tables and data in sqlCE - in computer that isnt have Visual studio or SQL server
hi
i am Looking for tool that i can see tables and data in sqlCE - in computer that isn't have Visual studio or SQL server install on hem
thank's for any help
0
votes
1answer
51 views
File Version Mismatch between ADO.NET Provider and Native Binaries
Can the following error be fixed using assemblyBinding? The application has System.Data.SqlCe.dll and native binaries (sqlcese35.dll, sqlceqp35.dll, sqlceme35.dll and other sqlce*. …
0
votes
1answer
42 views
Why do I get a string truncation error when using data type char instead of string?
I keep getting a string truncation error whenever I try to add an item to my test database. I am getting the following error:
System.InvalidOperationException: @p13 : String trun …
1
vote
1answer
21 views
Is the Unicode prefix N still needed in SQL Compact Edition?
At least in previous versions of SQL Server, you had to prefix Unicode string constants with an "N" to make them be treated as Unicode. Thus,
select foo from bar where fizz = N'bu …
0
votes
2answers
27 views
what is the fast way for find data in sqlCE - windows mobile & C#
hi
what is the fast way to find and data in sqlCE in windows-mobile (C#) ?
i have database with 1000000 records.
sql query ? .... or data reader ?.....or wat ??
thank's in adva …
0
votes
1answer
126 views
Deployment of SQL compact Edition (SDF files) using Setup project
Hi,
I have a C#.NET desktop application using SQL Compact edition as data store.
The application should be used by any user on the machine and all should be seeing the same data ( …
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
42 views
Insert a Row with a sorted DataGridView
My DataGridView is bound to the same BindingSource as the Insert Form, and the Name column is sorted. After insert is done, the groupBindingSource.Current is not returning the new …
0
votes
1answer
64 views
Format date from SQLCE to display in DataGridView
hi folks,
I have a DataGridView bound to a table from a .sdf database through a BindSource. The date column display dates like "d/M/yyyy HH:mm:ss". e.: "27/2/1971 00:00:00".
I wan …
0
votes
1answer
31 views
Backup and Restore a SQLCE .sdf database
My application needs to backup and restore .sdf files. There is a single dataSet the the whole application and some bindngSource and table adapters on forms using this same dataset …
0
votes
1answer
44 views
Very interesting problem in Compact Framework
Hi,
i have a performance problem while inserting data to sqlce.I'm reading string and making inserts to My tables.In LU_MAM table,i insert 1000 records withing 8 seconds.After Ma …
0
votes
3answers
119 views
Select newly added Row - DataGridView and BindingSource
I'm adding a new Row to a BindingSource that is Bound to a DataGridView
source.AddNew();
After this, use BindingSource to get the newly added row is return the next row in the D …
2
votes
3answers
57 views
Delete a Row from a DataGridView given its index
My DataGridView is a single line selection and theres a rowEnter Event where I get the line index every time the selected line changes.
private void rowEnter(object sender, Da …
