summaryrefslogtreecommitdiff
path: root/ext/pdo_dblib/pdo_dblib.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2005-06-10 18:06:44 +0000
committerSVN Migration <svn@php.net>2005-06-10 18:06:44 +0000
commit02889a1980340caaa4f2450c834da87fb675f848 (patch)
tree2e0b0f07f6810a635d5ecba89f63b6bfb63126f8 /ext/pdo_dblib/pdo_dblib.c
parent3b1f8e9ad74ad07580e4248b39fd0db261c31aa0 (diff)
downloadphp-git-php-5.0.1b1.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_0_1b1'.php-5.0.1b1
Diffstat (limited to 'ext/pdo_dblib/pdo_dblib.c')
-rw-r--r--ext/pdo_dblib/pdo_dblib.c198
1 files changed, 0 insertions, 198 deletions
diff --git a/ext/pdo_dblib/pdo_dblib.c b/ext/pdo_dblib/pdo_dblib.c
deleted file mode 100644
index 3c3987774d..0000000000
--- a/ext/pdo_dblib/pdo_dblib.c
+++ /dev/null
@@ -1,198 +0,0 @@
-/*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2005 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.0 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.php.net/license/3_0.txt. |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Author: Wez Furlong <wez@php.net> |
- | Frank M. Kromann <frank@kromann.info> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include "php.h"
-#include "php_ini.h"
-#include "ext/standard/info.h"
-#include "pdo/php_pdo.h"
-#include "pdo/php_pdo_driver.h"
-#include "php_pdo_dblib.h"
-#include "php_pdo_dblib_int.h"
-#include "zend_exceptions.h"
-
-ZEND_DECLARE_MODULE_GLOBALS(dblib)
-
-function_entry pdo_dblib_functions[] = {
- {NULL, NULL, NULL}
-};
-
-zend_module_entry pdo_dblib_module_entry = {
- STANDARD_MODULE_HEADER,
-#if PDO_DBLIB_IS_MSSQL
- "pdo_mssql",
-#else
- "pdo_sybase",
-#endif
- pdo_dblib_functions,
- PHP_MINIT(pdo_dblib),
- PHP_MSHUTDOWN(pdo_dblib),
- NULL,
- PHP_RSHUTDOWN(pdo_dblib),
- PHP_MINFO(pdo_dblib),
- "0.1-dev",
- STANDARD_MODULE_PROPERTIES
-};
-
-#if defined(COMPILE_DL_PDO_DBLIB) || defined(COMPILE_DL_PDO_MSSQL)
-ZEND_GET_MODULE(pdo_dblib)
-#endif
-
-int error_handler(DBPROCESS *dbproc, int severity, int dberr,
- int oserr, char *dberrstr, char *oserrstr)
-{
- pdo_dblib_err *einfo;
- char *state = "HY000";
- TSRMLS_FETCH();
-
- einfo = (pdo_dblib_err*)dbgetuserdata(dbproc);
- if (!einfo) einfo = &DBLIB_G(err);
-
- einfo->severity = severity;
- einfo->oserr = oserr;
- einfo->dberr = dberr;
- if (einfo->oserrstr) {
- efree(einfo->oserrstr);
- }
- if (einfo->dberrstr) {
- efree(einfo->dberrstr);
- }
- einfo->oserrstr = estrdup(oserrstr);
- einfo->dberrstr = estrdup(dberrstr);
-
- switch (dberr) {
- case SYBESEOF:
- case SYBEFCON: state = "01002"; break;
- case SYBEMEM: state = "HY001"; break;
- case SYBEPWD: state = "28000"; break;
- }
- strcpy(einfo->sqlstate, state);
-
-#if 0
- php_error_docref(NULL TSRMLS_CC, E_WARNING,
- "dblib error: %d %s (severity %d)",
- dberr, dberrstr, severity);
-#endif
-
- return INT_CANCEL;
-}
-
-int msg_handler(DBPROCESS *dbproc, DBINT msgno, int msgstate,
- int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line)
-{
- pdo_dblib_err *einfo;
- TSRMLS_FETCH();
-
- einfo = (pdo_dblib_err*)dbgetuserdata(dbproc);
- if (!einfo) einfo = &DBLIB_G(err);
-
- if (einfo->lastmsg) {
- efree(einfo->lastmsg);
- }
-
- einfo->lastmsg = estrdup(msgtext);
-
-#if 0
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "dblib message: %s (severity %d)", msgtext, severity);
-#endif
-
- return 0;
-}
-
-static int init_dblib_globals(zend_dblib_globals *g)
-{
- memset(g, 0, sizeof(*g));
- g->err.sqlstate = g->sqlstate;
- return SUCCESS;
-}
-
-PHP_RSHUTDOWN_FUNCTION(pdo_dblib)
-{
- if (DBLIB_G(err).oserrstr) {
- efree(DBLIB_G(err).oserrstr);
- DBLIB_G(err).oserrstr = NULL;
- }
- if (DBLIB_G(err).dberrstr) {
- efree(DBLIB_G(err).dberrstr);
- DBLIB_G(err).dberrstr = NULL;
- }
- if (DBLIB_G(err).lastmsg) {
- efree(DBLIB_G(err).lastmsg);
- DBLIB_G(err).lastmsg = NULL;
- }
- return SUCCESS;
-}
-
-PHP_MINIT_FUNCTION(pdo_dblib)
-{
- if (FAIL == dbinit()) {
- return FAILURE;
- }
-
- if (FAILURE == php_pdo_register_driver(&pdo_dblib_driver)) {
- return FAILURE;
- }
-
- ZEND_INIT_MODULE_GLOBALS(dblib, init_dblib_globals, NULL);
-
- /* TODO:
-
- dbsetifile()
- dbsetmaxprocs()
- dbsetlogintime()
- dbsettime()
-
- */
-
-#if !PHP_DBLIB_IS_MSSQL
- dberrhandle(error_handler);
- dbmsghandle(msg_handler);
-#endif
-
- return SUCCESS;
-}
-
-PHP_MSHUTDOWN_FUNCTION(pdo_dblib)
-{
- php_pdo_unregister_driver(&pdo_dblib_driver);
- dbexit();
- return SUCCESS;
-}
-
-PHP_MINFO_FUNCTION(pdo_dblib)
-{
- php_info_print_table_start();
- php_info_print_table_header(2, "PDO Driver for "
-#if PDO_DBLIB_IS_MSSQL
- "MSSQL"
-#elif defined(PHP_WIN32)
- "FreeTDS/Sybase/MSSQL"
-#else
- "Sybase"
-#endif
- " DB-lib", "enabled");
- php_info_print_table_row(2, "Flavour", PDO_DBLIB_FLAVOUR);
- php_info_print_table_end();
-}
-