Home
last modified time | relevance | path

Searched refs:mode (Results 176 – 200 of 750) sorted by path

12345678910>>...30

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_info.phpt34 printf("[007] Expecting unicode, because unicode mode it on. Got binary string\n");
H A Dmysqli_mysqli_result_invalid_mode.phpt2 mysqli_result(), invalid mode
16 $mode = mt_rand(-1000, 1000);
17 } while (in_array($mode, $valid));
19 if (!is_object($res = new mysqli_result($link, $mode)))
H A Dmysqli_query.phpt99 $mode = mt_rand(-1000, 1000);
100 } while (in_array($mode, $valid));
102 if (false !== ($res = @mysqli_query($link, "SELECT id FROM test ORDER BY id", $mode)))
103 printf("[013] Invalid mode should return false got %s/%s, [%d] %s\n",
H A Dmysqli_real_escape_string_big5.phpt6 die("skip Test cannot be run in unicode mode");
H A Dmysqli_real_escape_string_eucjpms.phpt6 die("skip Test cannot be run in unicode mode");
H A Dmysqli_real_escape_string_euckr.phpt6 die("skip Test cannot be run in unicode mode");
H A Dmysqli_real_escape_string_gb2312.phpt6 die("skip Test cannot be run in unicode mode");
H A Dmysqli_stmt_get_warnings.phpt21 die("skip Strict sql mode seems to be active. We won't get a warning to check for.");
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd.c2629 MYSQLND_METHOD(mysqlnd_conn_data, set_autocommit)(MYSQLND_CONN_DATA * conn, unsigned int mode TSRML…
2636 …ret = conn->m->query(conn, (mode) ? "SET AUTOCOMMIT=1":"SET AUTOCOMMIT=0", sizeof("SET AUTOCOMMIT=…
2667 if (mode & TRANS_COR_AND_CHAIN && !(mode & TRANS_COR_AND_NO_CHAIN)) {
2672 } else if (mode & TRANS_COR_AND_NO_CHAIN && !(mode & TRANS_COR_AND_CHAIN)) {
2679 if (mode & TRANS_COR_RELEASE && !(mode & TRANS_COR_NO_RELEASE)) {
2684 } else if (mode & TRANS_COR_NO_RELEASE && !(mode & TRANS_COR_RELEASE)) {
2784 MYSQLND_METHOD(mysqlnd_conn_data, tx_begin)(MYSQLND_CONN_DATA * conn, const unsigned int mode, cons…
2793 if (mode & TRANS_START_WITH_CONSISTENT_SNAPSHOT) {
2799 if (mode & (TRANS_START_READ_WRITE | TRANS_START_READ_ONLY)) {
2805 } else if (mode & TRANS_START_READ_WRITE) {
[all …]
H A Dmysqlnd.h103 PHPAPI void _mysqlnd_debug(const char *mode TSRMLS_DC);
194 #define mysqlnd_autocommit(conn, mode) ((conn)->data)->m->set_autocommit((conn)->data, (mode) TSRM… argument
H A Dmysqlnd_debug.c522 mode_len = mode? strlen(mode) : 0; in MYSQLND_METHOD()
536 switch (mode[i]) { in MYSQLND_METHOD()
542 if (mode[i] == 'a' || mode[i] == 'A') { in MYSQLND_METHOD()
548 if (i+4 < mode_len && mode[i+3] == ':' && (mode[i+4] == '\\' || mode[i+5] == '/')) { in MYSQLND_METHOD()
553 if (mode[j] == ':') { in MYSQLND_METHOD()
581 if (mode[j] == ':') { in MYSQLND_METHOD()
588 if (mode[j] == ',' || mode[j] == ':') { in MYSQLND_METHOD()
599 if (mode[j] == ':') { in MYSQLND_METHOD()
622 if (mode[i] == ':') { in MYSQLND_METHOD()
647 if (mode[i+1] == ',') { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_debug.h32 void (*set_mode)(MYSQLND_DEBUG * self, const char * const mode);
H A Dmysqlnd_structs.h483 …s (*func_mysqlnd_conn_data__set_autocommit)(MYSQLND_CONN_DATA * conn, unsigned int mode TSRMLS_DC);
486 …mysqlnd_conn_data__tx_begin)(MYSQLND_CONN_DATA * conn, const unsigned int mode, const char * const…
488 …ing)(const MYSQLND_CONN_DATA * const conn, smart_str * tmp_str, const unsigned int mode TSRMLS_DC);
/PHP-5.5/ext/oci8/
H A Doci8.c262 ZEND_ARG_INFO(0, mode)
336 ZEND_ARG_INFO(0, mode)
341 ZEND_ARG_INFO(0, mode)
355 ZEND_ARG_INFO(0, mode)
380 ZEND_ARG_INFO(0, mode)
590 ZEND_ARG_INFO(0, mode)
2588 fetch_mode = mode; in php_oci_fetch_row()
2598 fetch_mode = mode; in php_oci_fetch_row()
2607 fetch_mode = mode; in php_oci_fetch_row()
2612 if (mode & PHP_OCI_ASSOC) { in php_oci_fetch_row()
[all …]
H A Doci8_interface.c1326 long mode = OCI_COMMIT_ON_SUCCESS; local
1328 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &z_statement, &mode) == FAILURE) {
1334 if (php_oci_statement_execute(statement, mode TSRMLS_CC)) {
H A Doci8_statement.c406 int php_oci_statement_execute(php_oci_statement *statement, ub4 mode TSRMLS_DC) in php_oci_statement_execute()
419 switch (mode) { in php_oci_statement_execute()
426 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid execute mode given: %d", mode); in php_oci_statement_execute()
461 …xecute, (statement->connection->svc, statement->stmt, statement->err, iters, 0, NULL, NULL, mode)); in php_oci_statement_execute()
473 if (mode & OCI_COMMIT_ON_SUCCESS) { in php_oci_statement_execute()
995 int mode = OCI_DATA_AT_EXEC; in php_oci_bind_by_name() local
1010 mode = OCI_DEFAULT; in php_oci_bind_by_name()
1051 mode = OCI_DEFAULT; in php_oci_bind_by_name()
1136 mode /* mode */ in php_oci_bind_by_name()
1146 if (mode == OCI_DATA_AT_EXEC) { in php_oci_bind_by_name()
/PHP-5.5/ext/oci8/tests/
H A Db47243_1.phpt2 Bug #47243 (Crash on exit with ZTS mode)
H A Db47243_2.phpt2 Bug #47243 (Crash on exit with ZTS mode)
H A Db47243_3.phpt2 Bug #47243 (Crash on exit with ZTS mode)
H A Dbug44206.phpt26 $mode = OCI_ASSOC | OCI_RETURN_NULLS;
27 $result = oci_fetch_array($s, $mode);
30 oci_fetch_array($result['A'], $mode);
31 oci_fetch_array($result['B'], $mode);
H A Dcommit_001.phpt20 /* check with OCI_NO_AUTO_COMMIT mode */
H A Ddrcp_cclass1.phpt7 if (!$test_drcp) die("skip testing DRCP connection class only works in DRCP mode");
H A Dexecute_mode.phpt2 oci_execute() and invalid execute mode
18 Warning: oci_execute(): Invalid execute mode given: -1 in %s on line %d
H A Dprivileged_connect.phpt22 Warning: oci_connect(): Invalid session mode specified (-1) in %s on line %d
H A Dprivileged_connect1.phpt24 Warning: oci_connect(): Invalid session mode specified (-1) in %s on line %d

Completed in 82 milliseconds

12345678910>>...30