We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77af75c commit b5b65dfCopy full SHA for b5b65df
src/include/firebird/impl/msg/jrd.h
@@ -39,7 +39,7 @@ FB_IMPL_MSG(JRD, 37, open_trans, -901, "01", "002", "cannot disconnect database
39
FB_IMPL_MSG(JRD, 38, port_len, -901, "HY", "000", "message length error (encountered @1, expected @2)")
40
FB_IMPL_MSG(JRD, 39, read_only_field, -151, "42", "000", "attempted update of read-only column @1")
41
FB_IMPL_MSG(JRD, 40, read_only_rel, -150, "42", "000", "attempted update of read-only table")
42
-FB_IMPL_MSG(JRD, 41, read_only_trans, -817, "42", "000", "attempted update during read-only transaction")
+FB_IMPL_MSG(JRD, 41, read_only_trans, -817, "25", "006", "attempted update during read-only transaction")
43
FB_IMPL_MSG(JRD, 42, read_only_view, -150, "42", "000", "cannot update read-only view @1")
44
FB_IMPL_MSG(JRD, 43, req_no_trans, -901, "25", "000", "no transaction for request")
45
FB_IMPL_MSG(JRD, 44, req_sync, -901, "HY", "000", "request synchronization error")
src/msgs/sqlstates.sql
@@ -94,12 +94,13 @@ set bulk_insert INSERT INTO SQLSTATES (SQL_CLASS, SQL_SUBCLASS, SQL_STATE_TEXT)
94
-- 23 Integrity Constraint Violation
95
('23', '000', 'Integrity constraint violation')
96
-- 24 Invalid Cursor State
97
-('24', '000', 'Invalid cursor state')
+('24', '000', 'Invalid cursor state')
98
('24', '504', 'The cursor identified in the UPDATE, DELETE, SET, or GET statement is not positioned on a row')
99
-- 25 Invalid Transaction State
100
('25', '000', 'Invalid transaction state')
101
+('25', '006', 'Read-only SQL-transaction')
102
('25', 'S01', 'Transaction state')
-('25', 'S02', 'Transaction is still active')
103
+('25', 'S02', 'Transaction is still active')
104
('25', 'S03', 'Transaction is rolled back')
105
-- 26 Invalid SQL Statement Name
106
('26', '000', 'Invalid SQL statement name')
0 commit comments