php_pdo_oci_int.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. | Author: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #include <oci.h>
  20. typedef struct {
  21. const char *file;
  22. int line;
  23. sb4 errcode;
  24. char *errmsg;
  25. } pdo_oci_error_info;
  26. /* stuff we use in an OCI database handle */
  27. typedef struct {
  28. OCIServer *server;
  29. OCISession *session;
  30. OCIEnv *env;
  31. OCIError *err;
  32. OCISvcCtx *svc;
  33. /* OCI9; 0 == use NLS_LANG */
  34. ub2 charset;
  35. sword last_err;
  36. unsigned attached:1;
  37. unsigned _reserved:31;
  38. pdo_oci_error_info einfo;
  39. } pdo_oci_db_handle;
  40. typedef struct {
  41. OCIDefine *def;
  42. ub2 fetched_len;
  43. ub2 retcode;
  44. sb2 indicator;
  45. char *data;
  46. ub4 datalen;
  47. ub2 dtype;
  48. } pdo_oci_column;
  49. typedef struct {
  50. pdo_oci_db_handle *H;
  51. OCIStmt *stmt;
  52. OCIError *err;
  53. sword last_err;
  54. ub2 stmt_type;
  55. ub4 exec_type;
  56. pdo_oci_column *cols;
  57. pdo_oci_error_info einfo;
  58. unsigned int have_blobs:1;
  59. } pdo_oci_stmt;
  60. typedef struct {
  61. OCIBind *bind; /* allocated by OCI */
  62. sb2 oci_type;
  63. sb2 indicator;
  64. ub2 retcode;
  65. ub4 actual_len;
  66. dvoid *thing; /* for LOBS, REFCURSORS etc. */
  67. unsigned used_for_output;
  68. } pdo_oci_bound_param;
  69. extern const ub4 PDO_OCI_INIT_MODE;
  70. extern pdo_driver_t pdo_oci_driver;
  71. extern OCIEnv *pdo_oci_Env;
  72. ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isinit, const char *file, int line TSRMLS_DC);
  73. #define oci_init_error(w) _oci_error(H->err, dbh, NULL, w, H->last_err, TRUE, __FILE__, __LINE__ TSRMLS_CC)
  74. #define oci_drv_error(w) _oci_error(H->err, dbh, NULL, w, H->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC)
  75. #define oci_stmt_error(w) _oci_error(S->err, stmt->dbh, stmt, w, S->last_err, FALSE, __FILE__, __LINE__ TSRMLS_CC)
  76. extern struct pdo_stmt_methods oci_stmt_methods;
  77. /* Default prefetch size in number of rows */
  78. #define PDO_OCI_PREFETCH_DEFAULT 100
  79. /* Arbitrary assumed row length for prefetch memory limit calcuation */
  80. #define PDO_OCI_PREFETCH_ROWSIZE 1024