~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/interfaces/ecpg/include/sqltypes.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $PostgreSQL:$ 
 
3
 */
 
4
#ifndef ECPG_SQLTYPES_H
 
5
#define ECPG_SQLTYPES_H
 
6
 
 
7
#define CCHARTYPE       ECPGt_char
 
8
#define CSHORTTYPE      ECPGt_short
 
9
#define CINTTYPE        ECPGt_int
 
10
#define CLONGTYPE       ECPGt_long
 
11
#define CFLOATTYPE      ECPGt_float
 
12
#define CDOUBLETYPE ECPGt_double
 
13
#define CDECIMALTYPE    ECPGt_decimal
 
14
#define CFIXCHARTYPE    108
 
15
#define CSTRINGTYPE ECPGt_char
 
16
#define CDATETYPE       ECPGt_date
 
17
#define CMONEYTYPE      111
 
18
#define CDTIMETYPE      ECPGt_timestamp
 
19
#define CLOCATORTYPE    113
 
20
#define CVCHARTYPE      ECPGt_varchar
 
21
#define CINVTYPE        115
 
22
#define CFILETYPE       116
 
23
#define CINT8TYPE       ECPGt_long_long
 
24
#define CCOLLTYPE               118
 
25
#define CLVCHARTYPE             119
 
26
#define CFIXBINTYPE             120
 
27
#define CVARBINTYPE             121
 
28
#define CBOOLTYPE               ECPGt_bool
 
29
#define CROWTYPE                123
 
30
#define CLVCHARPTRTYPE  124
 
31
#define CTYPEMAX        25
 
32
 
 
33
#endif   /* ndef ECPG_SQLTYPES_H */