php_pdo_pgsql_int.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Edin Kadribasic <edink@emini.dk> |
  16. | Ilia Alshanestsky <ilia@prohost.org> |
  17. | Wez Furlong <wez@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. #ifndef PHP_PDO_PGSQL_INT_H
  22. #define PHP_PDO_PGSQL_INT_H
  23. #include <libpq-fe.h>
  24. #include <libpq/libpq-fs.h>
  25. #include <php.h>
  26. #define PHP_PDO_PGSQL_CONNECTION_FAILURE_SQLSTATE "08006"
  27. typedef struct {
  28. const char *file;
  29. int line;
  30. unsigned int errcode;
  31. char *errmsg;
  32. } pdo_pgsql_error_info;
  33. /* stuff we use in a pgsql database handle */
  34. typedef struct {
  35. PGconn *server;
  36. unsigned attached:1;
  37. unsigned _reserved:31;
  38. pdo_pgsql_error_info einfo;
  39. Oid pgoid;
  40. /* The following two variables have the same purpose. Unfortunately we need
  41. to keep track of two different attributes having the same effect. */
  42. int emulate_prepares;
  43. int disable_native_prepares; /* deprecated since 5.6 */
  44. int disable_prepares;
  45. unsigned int stmt_counter;
  46. } pdo_pgsql_db_handle;
  47. typedef struct {
  48. char *def;
  49. Oid pgsql_type;
  50. long intval;
  51. zend_bool boolval;
  52. } pdo_pgsql_column;
  53. typedef struct {
  54. pdo_pgsql_db_handle *H;
  55. PGresult *result;
  56. int current_row;
  57. pdo_pgsql_column *cols;
  58. char *cursor_name;
  59. char *stmt_name;
  60. char *query;
  61. char **param_values;
  62. int *param_lengths;
  63. int *param_formats;
  64. Oid *param_types;
  65. zend_bool is_prepared;
  66. } pdo_pgsql_stmt;
  67. typedef struct {
  68. Oid oid;
  69. } pdo_pgsql_bound_param;
  70. extern pdo_driver_t pdo_pgsql_driver;
  71. extern int _pdo_pgsql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, int line TSRMLS_DC);
  72. #define pdo_pgsql_error(d,e,z) _pdo_pgsql_error(d, NULL, e, z, NULL, __FILE__, __LINE__ TSRMLS_CC)
  73. #define pdo_pgsql_error_msg(d,e,m) _pdo_pgsql_error(d, NULL, e, NULL, m, __FILE__, __LINE__ TSRMLS_CC)
  74. #define pdo_pgsql_error_stmt(s,e,z) _pdo_pgsql_error(s->dbh, s, e, z, NULL, __FILE__, __LINE__ TSRMLS_CC)
  75. #define pdo_pgsql_error_stmt_msg(s,e,m) _pdo_pgsql_error(s->dbh, s, e, NULL, m, __FILE__, __LINE__ TSRMLS_CC)
  76. extern struct pdo_stmt_methods pgsql_stmt_methods;
  77. #define pdo_pgsql_sqlstate(r) PQresultErrorField(r, PG_DIAG_SQLSTATE)
  78. enum {
  79. PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT = PDO_ATTR_DRIVER_SPECIFIC,
  80. PDO_PGSQL_ATTR_DISABLE_PREPARES,
  81. };
  82. struct pdo_pgsql_lob_self {
  83. pdo_dbh_t *dbh;
  84. PGconn *conn;
  85. int lfd;
  86. Oid oid;
  87. };
  88. enum pdo_pgsql_specific_constants {
  89. PGSQL_TRANSACTION_IDLE = PQTRANS_IDLE,
  90. PGSQL_TRANSACTION_ACTIVE = PQTRANS_ACTIVE,
  91. PGSQL_TRANSACTION_INTRANS = PQTRANS_INTRANS,
  92. PGSQL_TRANSACTION_INERROR = PQTRANS_INERROR,
  93. PGSQL_TRANSACTION_UNKNOWN = PQTRANS_UNKNOWN
  94. };
  95. php_stream *pdo_pgsql_create_lob_stream(pdo_dbh_t *stmt, int lfd, Oid oid TSRMLS_DC);
  96. extern php_stream_ops pdo_pgsql_lob_stream_ops;
  97. #endif /* PHP_PDO_PGSQL_INT_H */
  98. /*
  99. * Local variables:
  100. * tab-width: 4
  101. * c-basic-offset: 4
  102. * End:
  103. * vim600: noet sw=4 ts=4 fdm=marker
  104. * vim<600: noet sw=4 ts=4
  105. */