Re: Could not update; currently locked error
- From: Andriy <Andriy@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 18 May 2008 09:37:01 -0700
Thanks a lot.
"Ralph" wrote:
.
"Andriy" <Andriy@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:B11FC969-6E4C-4AF9-8AAF-307297D87C57@xxxxxxxxxxxxxxxx
As far as I understand Jet OLEDB:Database Locking Mode is the property.for
From MSDN:
DBPROP_JETOLEDB_DATABASELOCKMODE Type: VT_I4
Typical R/W: R/W
Description: Jet OLEDB:Database Locking Mode
Scheme to use when locking the database.
Constants:
DBPROPVAL_DL_OLDMODE - Old mode used in previous releases of Jet's storage
engine
DBPROPVAL_DL_ALCATRAZ - Alcatraz mode. Enables locking mode that allows
row-level locking. This does not preclude page locking.right?
A database can be open in only one mode at a time. The first user to open
the database determines the locking mode used while the database is open.
I suppose if the values start with 0, the 2nd one has the value 1. Am I
You are correct:
// DBPROPSET_JETOLEDB_DBINIT DBPROP_JETOLEDB_DATABASELOCKMODE Enumeration
Values
// Original Jet Database Locking Scheme
#define DBPROPVAL_DL_OLDMODE 0x00
// Alcatraz Technology - enables row-level locking
#define DBPROPVAL_DL_ALCATRAZ 0x01
You might find this handy...
http://www.vrac.iastate.edu/~kevint/bin/DevStudio%20Patches/MSDevStudio6-sp5/msjetodb.h
hth
-ralph
- References:
- Re: Could not update; currently locked error
- From: Andriy
- Re: Could not update; currently locked error
- From: Ralph
- Re: Could not update; currently locked error
- Prev by Date: Re: Could not update; currently locked error
- Next by Date: How do I assign null to a field I want to insert
- Previous by thread: Re: Could not update; currently locked error
- Next by thread: How do I assign null to a field I want to insert
- Index(es):
Relevant Pages
|