Subject | Transaction Optoins |
---|---|
Author | Chad Z. Hower aka Kudzu |
Post date | 2005-06-05T08:08:56Z |
I currently have this:
_TxOpts =
FbTransactionOptions.Concurrency | FbTransactionOptions.Read
| (aNeedsToWrite ? FbTransactionOptions.Write : 0);
These are from the .NET provider but I assume they translate directly to FB
API constants.
1) Elsewhere in the .NET provider it maps a .NET constant simply to
Concurrency. Does Concurrency imply read and thus my addition of Read is not
needed?
2) Does concurrency also specify the write option? Ie its already
read+write?
--
Chad Z. Hower aka Kudzu
"Programming is an art form that fights back"
Still doing your website by hand? Get a free content management system:
http://www.atozed.com/iws/
_TxOpts =
FbTransactionOptions.Concurrency | FbTransactionOptions.Read
| (aNeedsToWrite ? FbTransactionOptions.Write : 0);
These are from the .NET provider but I assume they translate directly to FB
API constants.
1) Elsewhere in the .NET provider it maps a .NET constant simply to
Concurrency. Does Concurrency imply read and thus my addition of Read is not
needed?
2) Does concurrency also specify the write option? Ie its already
read+write?
--
Chad Z. Hower aka Kudzu
"Programming is an art form that fights back"
Still doing your website by hand? Get a free content management system:
http://www.atozed.com/iws/