php_pdo_sqlite_int.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. #ifndef PHP_PDO_SQLITE_INT_H
  20. #define PHP_PDO_SQLITE_INT_H
  21. #include <sqlite3.h>
  22. typedef struct {
  23. const char *file;
  24. int line;
  25. unsigned int errcode;
  26. char *errmsg;
  27. } pdo_sqlite_error_info;
  28. struct pdo_sqlite_fci {
  29. zend_fcall_info fci;
  30. zend_fcall_info_cache fcc;
  31. };
  32. struct pdo_sqlite_func {
  33. struct pdo_sqlite_func *next;
  34. zval *func, *step, *fini;
  35. int argc;
  36. const char *funcname;
  37. /* accelerated callback references */
  38. struct pdo_sqlite_fci afunc, astep, afini;
  39. };
  40. struct pdo_sqlite_collation {
  41. struct pdo_sqlite_collation *next;
  42. const char *name;
  43. zval *callback;
  44. struct pdo_sqlite_fci fc;
  45. };
  46. typedef struct {
  47. sqlite3 *db;
  48. pdo_sqlite_error_info einfo;
  49. struct pdo_sqlite_func *funcs;
  50. struct pdo_sqlite_collation *collations;
  51. } pdo_sqlite_db_handle;
  52. typedef struct {
  53. pdo_sqlite_db_handle *H;
  54. sqlite3_stmt *stmt;
  55. unsigned pre_fetched:1;
  56. unsigned done:1;
  57. } pdo_sqlite_stmt;
  58. extern pdo_driver_t pdo_sqlite_driver;
  59. extern int _pdo_sqlite_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int line TSRMLS_DC);
  60. #define pdo_sqlite_error(s) _pdo_sqlite_error(s, NULL, __FILE__, __LINE__ TSRMLS_CC)
  61. #define pdo_sqlite_error_stmt(s) _pdo_sqlite_error(stmt->dbh, stmt, __FILE__, __LINE__ TSRMLS_CC)
  62. extern struct pdo_stmt_methods sqlite_stmt_methods;
  63. #endif