Home
last modified time | relevance | path

Searched refs:odbc_connection_object_handlers (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/odbc/
H A Dphp_odbc.c70 static zend_object_handlers odbc_connection_object_handlers, odbc_result_object_handlers; variable
513 odbc_connection_ce->default_object_handlers = &odbc_connection_object_handlers; in PHP_MINIT_FUNCTION()
515 memcpy(&odbc_connection_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
516 odbc_connection_object_handlers.offset = XtOffsetOf(odbc_link, std); in PHP_MINIT_FUNCTION()
517 odbc_connection_object_handlers.free_obj = odbc_connection_free_obj; in PHP_MINIT_FUNCTION()
518 odbc_connection_object_handlers.get_constructor = odbc_connection_get_constructor; in PHP_MINIT_FUNCTION()
519 odbc_connection_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()
520 odbc_connection_object_handlers.cast_object = odbc_connection_cast_object; in PHP_MINIT_FUNCTION()
521 odbc_connection_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()

Completed in 11 milliseconds