php_pdo_odbc_int.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.0 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_0.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. | Author: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef PHP_WIN32
  19. # define PDO_ODBC_TYPE "Win32"
  20. #endif
  21. #ifndef PDO_ODBC_TYPE
  22. # warning Please fix configure to give your ODBC libraries a name
  23. # define PDO_ODBC_TYPE "Unknown"
  24. #endif
  25. /* {{{ Roll a dice, pick a header at random... */
  26. #if HAVE_SQLCLI1_H
  27. # include <sqlcli1.h>
  28. # if defined(DB268K) && HAVE_LIBRARYMANAGER_H
  29. # include <LibraryManager.h>
  30. # endif
  31. #endif
  32. #if HAVE_ODBC_H
  33. # include <odbc.h>
  34. #endif
  35. #if HAVE_IODBC_H
  36. # include <iodbc.h>
  37. #endif
  38. #if HAVE_SQLUNIX_H && !defined(PHP_WIN32)
  39. # include <sqlunix.h>
  40. #endif
  41. #if HAVE_SQLTYPES_H
  42. # include <sqltypes.h>
  43. #endif
  44. #if HAVE_SQLUCODE_H
  45. # include <sqlucode.h>
  46. #endif
  47. #if HAVE_SQL_H
  48. # include <sql.h>
  49. #endif
  50. #if HAVE_ISQL_H
  51. # include <isql.h>
  52. #endif
  53. #if HAVE_SQLEXT_H
  54. # include <sqlext.h>
  55. #endif
  56. #if HAVE_ISQLEXT_H
  57. # include <isqlext.h>
  58. #endif
  59. #if HAVE_UDBCEXT_H
  60. # include <udbcext.h>
  61. #endif
  62. #if HAVE_CLI0CORE_H
  63. # include <cli0core.h>
  64. #endif
  65. #if HAVE_CLI0EXT1_H
  66. # include <cli0ext.h>
  67. #endif
  68. #if HAVE_CLI0CLI_H
  69. # include <cli0cli.h>
  70. #endif
  71. #if HAVE_CLI0DEFS_H
  72. # include <cli0defs.h>
  73. #endif
  74. #if HAVE_CLI0ENV_H
  75. # include <cli0env.h>
  76. #endif
  77. #if HAVE_ODBCSDK_H
  78. # include <odbcsdk.h>
  79. #endif
  80. /* }}} */
  81. /* {{{ Figure out the type for handles */
  82. #if !defined(HENV) && !defined(SQLHENV) && defined(SQLHANDLE)
  83. # define PDO_ODBC_HENV SQLHANDLE
  84. # define PDO_ODBC_HDBC SQLHANDLE
  85. # define PDO_ODBC_HSTMT SQLHANDLE
  86. #elif !defined(HENV) && (defined(SQLHENV) || defined(DB2CLI_VER))
  87. # define PDO_ODBC_HENV SQLHENV
  88. # define PDO_ODBC_HDBC SQLHDBC
  89. # define PDO_ODBC_HSTMT SQLHSTMT
  90. #else
  91. # define PDO_ODBC_HENV HENV
  92. # define PDO_ODBC_HDBC HDBC
  93. # define PDO_ODBC_HSTMT HSTMT
  94. #endif
  95. /* }}} */
  96. typedef struct {
  97. char last_state[6];
  98. char last_err_msg[SQL_MAX_MESSAGE_LENGTH];
  99. SDWORD last_error;
  100. const char *file, *what;
  101. int line;
  102. } pdo_odbc_errinfo;
  103. typedef struct {
  104. PDO_ODBC_HENV env;
  105. PDO_ODBC_HDBC dbc;
  106. pdo_odbc_errinfo einfo;
  107. unsigned assume_utf8:1;
  108. unsigned _spare:31;
  109. } pdo_odbc_db_handle;
  110. typedef struct {
  111. char *data;
  112. zend_ulong datalen;
  113. SQLLEN fetched_len;
  114. SWORD coltype;
  115. char colname[128];
  116. unsigned is_long;
  117. unsigned is_unicode:1;
  118. unsigned _spare:31;
  119. } pdo_odbc_column;
  120. typedef struct {
  121. PDO_ODBC_HSTMT stmt;
  122. pdo_odbc_column *cols;
  123. pdo_odbc_db_handle *H;
  124. pdo_odbc_errinfo einfo;
  125. char *convbuf;
  126. zend_ulong convbufsize;
  127. unsigned going_long:1;
  128. unsigned assume_utf8:1;
  129. signed col_count:16;
  130. unsigned _spare:14;
  131. } pdo_odbc_stmt;
  132. typedef struct {
  133. SQLLEN len;
  134. SQLSMALLINT paramtype;
  135. char *outbuf;
  136. unsigned is_unicode:1;
  137. unsigned _spare:31;
  138. } pdo_odbc_param;
  139. extern const pdo_driver_t pdo_odbc_driver;
  140. extern const struct pdo_stmt_methods odbc_stmt_methods;
  141. void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const char *file, int line);
  142. #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__)
  143. #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, __LINE__)
  144. #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__)
  145. void pdo_odbc_init_error_table(void);
  146. void pdo_odbc_fini_error_table(void);
  147. #ifdef SQL_ATTR_CONNECTION_POOLING
  148. extern zend_ulong pdo_odbc_pool_on;
  149. extern zend_ulong pdo_odbc_pool_mode;
  150. #endif
  151. enum {
  152. PDO_ODBC_ATTR_USE_CURSOR_LIBRARY = PDO_ATTR_DRIVER_SPECIFIC,
  153. PDO_ODBC_ATTR_ASSUME_UTF8 /* assume that input strings are UTF-8 when feeding data to unicode columns */
  154. };
  155. /*
  156. * Local variables:
  157. * tab-width: 4
  158. * c-basic-offset: 4
  159. * End:
  160. * vim600: noet sw=4 ts=4 fdm=marker
  161. * vim<600: noet sw=4 ts=4
  162. */