Run time error 3622: OpenRecordSet: SQL server table: IDENTITY column 
Author Message
 Run time error 3622: OpenRecordSet: SQL server table: IDENTITY column

When my code runs to the following statament, an error message pops up:

Set rcsScanedRackList = dbsCurrent.OpenRecordset("dbo_ScanedRackList", ,
dbSeeChanges)
----------------------------------------------------------------
Run time error 3622

You must use the dbSeeChanges option with OpenRecordset when accessing a SQL
server table that has an IDENTITY column.
----------------------------------------------------------------
Just as you see, I've  use the dbSeeChanges option. But the error still
occurs. Why?

Can you help me? Thanks in advance.



Sun, 29 Apr 2001 03:00:00 GMT  
 Run time error 3622: OpenRecordSet: SQL server table: IDENTITY column
Maybe you don't close the recordset after you use it.
Before End Sub try :
....
rcsScanedRackList .Close
End Sub

Rodica

Quote:

>When my code runs to the following statament, an error message pops up:

>Set rcsScanedRackList = dbsCurrent.OpenRecordset("dbo_ScanedRackList", ,
>dbSeeChanges)
>----------------------------------------------------------------
>Run time error 3622

>You must use the dbSeeChanges option with OpenRecordset when accessing a
SQL
>server table that has an IDENTITY column.
>----------------------------------------------------------------
>Just as you see, I've  use the dbSeeChanges option. But the error still
>occurs. Why?

>Can you help me? Thanks in advance.



Sat, 05 May 2001 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. error 3622 - table has identity column

2. Please help - Error 3622 .... identity column

3. OpenRecordset and SQL Table w/ IDENTITY Column

4. BUG: Error 3622 SQL SERVER

5. Reset Identity Column in SQL Server table with VB

6. RDO: Connecting to SQL server table containing an identity column

7. SQL SERVER + IDENTITY column + DbSeeChanges PROBLEM

8. RDO, SQL Server and IDENTITY columns

9. SQL Server/VB (Identity Column)

10. VB 4.0 & SQL Server 6.5 (Identity Column)

11. Getting Identity column in SQL Server

12. SQL Server AddNew Identity Column

 

 
Powered by phpBB® Forum Software