Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 S1010, function sequence error

Author  Topic 

lascy
Starting Member

1 Post

Posted - 2006-03-22 : 23:28:09
SQL ODBC 2000.81.9042.00
MSVC++6.0 CRecordsets

tab1.open(CRecordset:dynaset, ...);
while ( ! tab1.IsEOF() )
{
db.BeginTrans();
tab2.AddNew();
...
...
tab2.Update();
tab2.Close();

tab3.Addnew();
...
...
tab3.Update();
tab3.Close();

db.CommitTrans();
tab1.MoveNext(); ---> S1010 error
}

With MySQL the coding works fine.

Do you have any hints?
thanks.
   

- Advertisement -