|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2012-06-07 17:01 UTC] felipe@php.net
 
-Status: Open
+Status: Not a bug
  [2012-06-07 17:01 UTC] felipe@php.net
  [2012-06-08 09:07 UTC] mr dot efrem at gmail dot com
  [2013-05-31 15:14 UTC] slavb18 at gmail dot com
  [2013-05-31 15:26 UTC] slavb18 at gmail dot com
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 02:00:02 2025 UTC | 
Description: ------------ How set isolation level and options for firebird transactions? Test script: --------------- I see in ext/pdo_firebird/firebird_driver.c this code: /* called by PDO to start a transaction */ static int firebird_handle_begin(pdo_dbh_t *dbh TSRMLS_DC) /* {{{ */ .... if (dbh->transaction_flags & PDO_TRANS_ISOLATION_LEVEL) { if (dbh->transaction_flags & PDO_TRANS_READ_UNCOMMITTED) { /* this is a poor fit, but it's all we have */ *ptpb++ = isc_tpb_read_committed; *ptpb++ = isc_tpb_rec_version; ... How and where to send the flags PDO_TRANS_READ_COMMITTED, PDO_TRANS_READWRITE, PDO_TRANS_ABORT, ... at the opening of the transaction functions PDO?