8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00

Correct docs a little

This commit is contained in:
skidder 2003-07-28 09:21:08 +00:00
parent 40ea999df5
commit b607034b35
2 changed files with 8 additions and 2 deletions

View File

@ -90,7 +90,13 @@ give you the rows contained in the last fetched packed where error happened.
You may use FOR UPDATE clause to prevent usage of buffered fetches (and may
use positioned updates feature) or set fetch buffer size to 1 in your access
components in case you need to process locked row before next row is locked
or if you want to handle some errors without rolling back your transaction.
or if you want actually process all rows that can be locked before first row
producing error.
Commit and rollback retaining release explicit and implicit locks
exactly as normal commit and rollback. Be careful when using buffered
fetches and retaining operations. Records contained in the client-side
buffer may be unlocked even before returned to the application.
Rolling back of implicit or explicit savepoint releases record locks that
were taken under this savepoint, but doesn't notify waiting transactions.

View File

@ -46,7 +46,7 @@ A)
B)
SELECT FIRST 10 * FROM DOCUMENT
ORDER BY AMOUNT DESC
ORDER BY STRLEN(DESCRIPTION) DESC
C)
SELECT DOC_NUMBER, DOC_DATE FROM PAYORDER