C
Cip
Hi,
does anyone have any information on how i would implement my own "Data
Importer" type application, similar to DTS, BCP?
Users would select a datasource (oracle, sql server, text files, etc.
- whatever flexibility i feel like programming) and the destination
(the destination will always be an embedded SQLite database, users
choose the filename)
currently i am achieving it this way:
loop 10000 times
prepare insert into string, get source values from Oracle , SQL, or
text
execute insert into command in destination datasource
loop
and its obviously slow.
how can i achieve bulk copying?
NOTE: this app is to be run on ANY user's machine, regardless of
whether they have DTS installed or the DTS dlls from the SQL Server
redist DLLs. so i want my app to be completely independent; i dont
want a solution that relies on a call to DTS or BCP since that would
create dependencies.
does this make sense?
does anyone have any information on how i would implement my own "Data
Importer" type application, similar to DTS, BCP?
Users would select a datasource (oracle, sql server, text files, etc.
- whatever flexibility i feel like programming) and the destination
(the destination will always be an embedded SQLite database, users
choose the filename)
currently i am achieving it this way:
loop 10000 times
prepare insert into string, get source values from Oracle , SQL, or
text
execute insert into command in destination datasource
loop
and its obviously slow.
how can i achieve bulk copying?
NOTE: this app is to be run on ANY user's machine, regardless of
whether they have DTS installed or the DTS dlls from the SQL Server
redist DLLs. so i want my app to be completely independent; i dont
want a solution that relies on a call to DTS or BCP since that would
create dependencies.
does this make sense?