~ubuntu-branches/ubuntu/oneiric/firebird2.5/oneiric-security

« back to all changes in this revision

Viewing changes to src/jrd/extds/ExtDS.h

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2010-07-27 18:12:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100727181234-88lvl2nuord9ysx5
Tags: 2.5.0.26054~ReleaseCandidate3.ds2-1
* New upstream release candidate

* update d/copyright to reflect changes in upstream sources
* drop patches applied/implemented upstream
  + refresh the rest to apply cleanly
* Standards-Version: 3.9.1 (no changes necessary)

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
        // info into locally raised exception
191
191
        void raise(ISC_STATUS* status, Jrd::thread_db* tdbb, const char* sWhere);
192
192
 
 
193
        // will we wrap external errors into our ones (isc_eds_xxx) or pass them as is
 
194
        bool getWrapErrors() const      { return m_wrapErrors; }
 
195
        void setWrapErrors(bool val) { m_wrapErrors = val; }
 
196
 
193
197
        // Transactions management within connection scope : put newly created
194
198
        // transaction into m_transactions array and delete not needed transaction
195
199
        // immediately (as we didn't pool transactions)
236
240
        int     m_free_stmts;
237
241
        bool m_deleting;
238
242
        int m_sqlDialect;       // must be filled in attach call
 
243
        bool m_wrapErrors;
239
244
};
240
245
 
241
246