Please see my reply to you on the Sqlserver.ce newsgroup. - Ginny Caughey MVP |
Monday, July 21, 2008 10:30 AM
|
Please see my reply to you on the Sqlserver.ce newsgroup.
--
Ginny Caughey
Device Application Development MVP |
 |
Import txt file to sqlce table - Fergest |
Monday, July 21, 2008 11:00 AM
|
Thanks for your answer mahh ...
I can not see the answer on news grop indicated thanks
F.Rino |
 |
Import txt file to sqlce table - Ginny Caughey MVP |
Monday, July 21, 2008 2:09 PM
|
I don't see it either, so here's the reply again:
The easiest way is to use a 3rd party product like this:
http://www.primeworks-mobile.com/Products/DataPortConsole.html
Or just write your own code to read the text file and write the data out to
the SQL CE sdf file.
--
Ginny Caughey
Device Application Development MVP |
 |
I want to learn how to write code, to read the text file and write data in sql - Fergest |
Tuesday, July 22, 2008 1:57 AM
|
I want to learn how to write code, to read the text file and write data in
sql ce sdf how to do?
you can help me?
small example code.
thank you
excuse for my English
Ferrari Rino (Italy) |
 |
Another method that has worked well for me and might work for you, is to - RDub |
Tuesday, July 22, 2008 8:07 AM
|
Another method that has worked well for me and might work for you, is to
create a text file consisting of Sql statements. Inserts, Updates, and or
Deletes. Then write some code that reads the file line by line and executes
each sql statement. It's a low tech, and flexible way to get new data into
you Pocket PC. Once you have it working, you do not have to revisit the
code when the database design changes. Just modify your SQL statements to
account for the new schema.
RDub |
 |