Tagged Questions
2
votes
1answer
3k views
Update/Insert to a table using SQLCeResultSet
I have a SQL Compact Edition Database that I update periodically (via web services).
The part where I write to the database is taking way too long. I am currently doing it with Linq to Datasets (as ...
4
votes
3answers
6k views
Store an image in a SQL Server CE database
Does any one know of an example on how to store an image in a SQL Server CE database?
What data type should the column be? (I am guessing binary.)
I use Linq-To-Datasets. Is it possible using that ...
0
votes
1answer
904 views
Slow Update/insert into SQL Server CE using LinqToDatasets
I have a mobile app that is using LinqToDatasets to update/insert into a SQL Server CE 3.5 File.
My Code looks like this:
// All the MyClass Updates
MyTableAdapter myTableAdapter = new ...