M
Miliuccio
I use this loop to read from 2000SQL and write in a clean table on my SQLCE
'Inizio Transazione Reparti'
rcmd.CommandText = "SELECT * FROM ARCHIVIOSQL2000"
rrdr = rcmd.ExecuteReader()
While rrdr.Read()
cmd.CommandText = "INSERT INTO ARCHIVIOCE (TABELLA) VALUES
(rrdr("NOMETABELLA2000")"
rdr = cmd.ExecuteReader()
End While
Is there a metod to do a massive write on sqlCE from my vector? without the
loop that use 3 minutes to write any row?
'Inizio Transazione Reparti'
rcmd.CommandText = "SELECT * FROM ARCHIVIOSQL2000"
rrdr = rcmd.ExecuteReader()
While rrdr.Read()
cmd.CommandText = "INSERT INTO ARCHIVIOCE (TABELLA) VALUES
(rrdr("NOMETABELLA2000")"
rdr = cmd.ExecuteReader()
End While
Is there a metod to do a massive write on sqlCE from my vector? without the
loop that use 3 minutes to write any row?