~ubuntu-branches/ubuntu/precise/libdbi-drivers/precise

« back to all changes in this revision

Viewing changes to drivers/firebird/dbd_firebird.h

  • Committer: Stefano Rivera
  • Date: 2010-08-07 14:06:29 UTC
  • mfrom: (5.1.1 libdbi-drivers)
  • Revision ID: stefanor@ubuntu.com-20100807140629-dshfwn5j6v34pqrd
Tags: 0.8.3-1-0ubuntu1
New upstream release. -- Fixes ABORT problems with sqlite3+rrdtool

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __DBD_FIREBIRD_H
2
2
#define __DBD_FIREBIRD_H
3
3
 
4
 
        
5
4
typedef struct ibase_conn_s
6
5
{
7
6
  isc_db_handle db;             /* database handle */
8
7
  isc_tr_handle trans;          /* transaction handle */
9
 
  ISC_STATUS_ARRAY status;
 
8
  ISC_STATUS status_vector[ISC_STATUS_LENGTH];
10
9
  const char *charset;
11
10
} ibase_conn_t;
12
11