~ubuntu-branches/ubuntu/trusty/psqlodbc/trusty-proposed

« back to all changes in this revision

Viewing changes to convert.h

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2011-04-05 14:48:23 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110405144823-n77supsa1hjj0ik6
Tags: 1:09.00.0200-1
* New upstream release.
* Fix installing {A,W}/usr/lib/odbc.  Closes: #618210.
* Convert to 3.0 (quilt).
* Remove psqlodbc-580878.diff: implemented upstream.
* Remove psqlodbc-585476.diff: was caused by #519006 which is now closed.
* Update description, suggested by Martin Eberhard Schauer.
  Closes: #565611.
* New maintainer.  Closes: #472818.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        int                     fr;
39
39
} SIMPLE_TIME;
40
40
 
41
 
int             copy_and_convert_field_bindinfo(StatementClass *stmt, OID field_type, void *value, int col);
42
 
int     copy_and_convert_field(StatementClass *stmt, OID field_type,
43
 
                        void *value, SQLSMALLINT fCType, PTR rgbValue,
44
 
                        SQLLEN cbValueMax, SQLLEN *pcbValue, SQLLEN *pIndicator);
 
41
int     copy_and_convert_field_bindinfo(StatementClass *stmt, OID field_type, int atttypmod, void *value, int col);
 
42
int     copy_and_convert_field(StatementClass *stmt,
 
43
                        OID field_type, int atttypmod,
 
44
                        void *value,
 
45
                        SQLSMALLINT fCType, int precision,
 
46
                        PTR rgbValue, SQLLEN cbValueMax, SQLLEN *pcbValue, SQLLEN *pIndicator);
45
47
 
46
48
int             copy_statement_with_parameters(StatementClass *stmt, BOOL);
47
49
BOOL            convert_money(const char *s, char *sout, size_t soutmax);