php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
pdo_dblib.c File Reference
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "ext/pdo/php_pdo.h"
#include "ext/pdo/php_pdo_driver.h"
#include "php_pdo_dblib.h"
#include "php_pdo_dblib_int.h"
#include "zend_exceptions.h"
#include "pdo_dblib_arginfo.h"

Go to the source code of this file.

Functions

int pdo_dblib_error_handler (DBPROCESS *dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr)
 
int pdo_dblib_msg_handler (DBPROCESS *dbproc, DBINT msgno, int msgstate, int severity, char *msgtext, char *srvname, char *procname, int line)
 
void pdo_dblib_err_dtor (pdo_dblib_err *err)
 
 PHP_RSHUTDOWN_FUNCTION (pdo_dblib)
 
 PHP_MINIT_FUNCTION (pdo_dblib)
 
 PHP_MSHUTDOWN_FUNCTION (pdo_dblib)
 
 PHP_MINFO_FUNCTION (pdo_dblib)
 

Variables

zend_module_entry pdo_dblib_module_entry
 

Function Documentation

◆ pdo_dblib_err_dtor()

void pdo_dblib_err_dtor ( pdo_dblib_err * err)

Definition at line 147 of file pdo_dblib.c.

◆ pdo_dblib_error_handler()

int pdo_dblib_error_handler ( DBPROCESS * dbproc,
int severity,
int dberr,
int oserr,
char * dberrstr,
char * oserrstr )

Definition at line 81 of file pdo_dblib.c.

◆ pdo_dblib_msg_handler()

int pdo_dblib_msg_handler ( DBPROCESS * dbproc,
DBINT msgno,
int msgstate,
int severity,
char * msgtext,
char * srvname,
char * procname,
int line )

Definition at line 126 of file pdo_dblib.c.

◆ PHP_MINFO_FUNCTION()

PHP_MINFO_FUNCTION ( pdo_dblib )

Definition at line 229 of file pdo_dblib.c.

◆ PHP_MINIT_FUNCTION()

PHP_MINIT_FUNCTION ( pdo_dblib )

Definition at line 193 of file pdo_dblib.c.

◆ PHP_MSHUTDOWN_FUNCTION()

PHP_MSHUTDOWN_FUNCTION ( pdo_dblib )

Definition at line 222 of file pdo_dblib.c.

◆ PHP_RSHUTDOWN_FUNCTION()

PHP_RSHUTDOWN_FUNCTION ( pdo_dblib )

Definition at line 176 of file pdo_dblib.c.

Variable Documentation

◆ pdo_dblib_module_entry

zend_module_entry pdo_dblib_module_entry
Initial value:
= {
pdo_dblib_deps,
"pdo_dblib",
PHP_MINIT(pdo_dblib),
PHP_MSHUTDOWN(pdo_dblib),
PHP_RSHUTDOWN(pdo_dblib),
PHP_MINFO(pdo_dblib),
PHP_GINIT(dblib),
}
#define NULL
Definition gdcache.h:45
#define PHP_GINIT
Definition php.h:397
#define PHP_MINFO
Definition php.h:396
#define PHP_MSHUTDOWN
Definition php.h:393
#define PHP_RSHUTDOWN
Definition php.h:395
#define PHP_MINIT
Definition php.h:392
#define PHP_MODULE_GLOBALS
Definition php.h:408
#define PHP_PDO_DBLIB_VERSION
#define STANDARD_MODULE_PROPERTIES_EX
#define STANDARD_MODULE_HEADER_EX

Definition at line 45 of file pdo_dblib.c.