ORA-03114: not connected to ORACLE. [message #53006] |
Fri, 23 August 2002 07:19 |
Venkat
Messages: 110 Registered: February 2001
|
Senior Member |
|
|
Hi,
ORA-03114: not connected to ORACLE.
Iam trying to insert records one by one from VB to a table in Oracle database.
Here is the code sample
do while <>
lstrInsertSql = "Insert into employee Values(" & lstrInsertValues & ")"
Set lobjCommand = New ADODB.Command
lobjCommand.ActiveConnection = gobjADOProcess.mobjADO.FullConnect
Set lobjRS = gobjADOProcess.mobjADO.OpenRSDisconnected(lstrInsertSql)
lobjCommand.CommandText = lstrInsertSql
lobjCommand.Execute
Set lobjCommand = Nothing
.movenext
loop
Half way thru.... after inserting approx. 20,000 records, I get this error message
ORA-03114: not connected to ORACLE.
Please let me know how to handle large volume of data.
Please help.
Thanks in advance
ORA-03114: not connected to ORACLE.
|
|
|
|
|