php_sqlite3_structs.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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: Scott MacVicar <scottmac@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_SQLITE_STRUCTS_H
  20. #define PHP_SQLITE_STRUCTS_H
  21. #include <sqlite3.h>
  22. /* for backwards compatibility reasons */
  23. #ifndef SQLITE_OPEN_READONLY
  24. #define SQLITE_OPEN_READONLY 0x00000001
  25. #endif
  26. #ifndef SQLITE_OPEN_READWRITE
  27. #define SQLITE_OPEN_READWRITE 0x00000002
  28. #endif
  29. #ifndef SQLITE_OPEN_CREATE
  30. #define SQLITE_OPEN_CREATE 0x00000004
  31. #endif
  32. /* Structure for SQLite Statement Parameter. */
  33. struct php_sqlite3_bound_param {
  34. long param_number;
  35. char *name;
  36. int name_len;
  37. long type;
  38. zval *parameter;
  39. };
  40. struct php_sqlite3_fci {
  41. zend_fcall_info fci;
  42. zend_fcall_info_cache fcc;
  43. };
  44. /* Structure for SQLite function. */
  45. typedef struct _php_sqlite3_func {
  46. struct _php_sqlite3_func *next;
  47. const char *func_name;
  48. int argc;
  49. zval *func, *step, *fini;
  50. struct php_sqlite3_fci afunc, astep, afini;
  51. } php_sqlite3_func;
  52. /* Structure for SQLite collation function */
  53. typedef struct _php_sqlite3_collation {
  54. struct _php_sqlite3_collation *next;
  55. const char *collation_name;
  56. zval *cmp_func;
  57. struct php_sqlite3_fci fci;
  58. } php_sqlite3_collation;
  59. /* Structure for SQLite Database object. */
  60. typedef struct _php_sqlite3_db_object {
  61. zend_object zo;
  62. int initialised;
  63. sqlite3 *db;
  64. php_sqlite3_func *funcs;
  65. php_sqlite3_collation *collations;
  66. zend_bool exception;
  67. zend_llist free_list;
  68. } php_sqlite3_db_object;
  69. /* Structure for SQLite Database object. */
  70. typedef struct _php_sqlite3_agg_context {
  71. zval *zval_context;
  72. long row_count;
  73. } php_sqlite3_agg_context;
  74. typedef struct _php_sqlite3_stmt_object php_sqlite3_stmt;
  75. typedef struct _php_sqlite3_result_object php_sqlite3_result;
  76. /* sqlite3 objects to be destroyed */
  77. typedef struct _php_sqlite3_free_list {
  78. zval *stmt_obj_zval;
  79. php_sqlite3_stmt *stmt_obj;
  80. } php_sqlite3_free_list;
  81. /* Structure for SQLite Result object. */
  82. struct _php_sqlite3_result_object {
  83. zend_object zo;
  84. php_sqlite3_db_object *db_obj;
  85. php_sqlite3_stmt *stmt_obj;
  86. zval *stmt_obj_zval;
  87. int is_prepared_statement;
  88. int complete;
  89. };
  90. /* Structure for SQLite Statement object. */
  91. struct _php_sqlite3_stmt_object {
  92. zend_object zo;
  93. sqlite3_stmt *stmt;
  94. php_sqlite3_db_object *db_obj;
  95. zval *db_obj_zval;
  96. int initialised;
  97. /* Keep track of the zvals for bound parameters */
  98. HashTable *bound_params;
  99. };
  100. #endif
  101. /*
  102. * Local variables:
  103. * tab-width: 4
  104. * c-basic-offset: 4
  105. * indent-tabs-mode: t
  106. * End:
  107. */