Home
last modified time | relevance | path

Searched refs:mysql_errno (Results 26 – 50 of 71) sorted by relevance

123

/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_array.phpt23 printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
44 printf("[010] Cannot run query, [%d] %s\n", mysql_errno($link), mysql_error($link));
52 mysql_errno($link), $mysql_error($link));
62 gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
67 gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
74 printf("[%04d] [%d] %s\n", $offset, mysql_errno($link), mysql_error($link));
84 printf("[%04d] [%d] %s\n", $offset + 1, mysql_errno($link), mysql_error($link));
90 printf("[%04d] [%d] %s\n", $offset + 1, mysql_errno($link), mysql_error($link));
99 printf("[%04d] [%d] %s\n", $offset + 2, mysql_errno($link), mysql_error($link));
104 printf("[%04d] [%d] %s\n", $offset + 3, mysql_errno($link), mysql_error($link));
[all …]
H A Dmysql_deprecated_api.phpt25 $error .= sprintf("[001] [%d] %s\n", mysql_errno($link), mysql_error($link));
44 $error .= sprintf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
58 $error .= sprintf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_list_tables.phpt30 printf("[005] [%d] %s\n", mysql_errno(), mysql_error());
33 printf("[006] [%d] %s\n", mysql_errno($link), mysql_error($link));
36 printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_client_encoding.phpt23 …printf("[003] %s != %s, [%d] %s\n", $default_link_enc, $link_enc, mysql_errno($link), mysql_error(…
26 printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
37 printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_thread_id.phpt22 gettype($id), $id, mysql_errno($link), mysql_error($link));
26 gettype($id_def), $id_def, mysql_errno(), mysql_error());
H A Dmysql_ping.phpt24 if (!($errno = mysql_errno($link)))
29 if ($errno === mysql_errno($link))
H A Dmysql_error.phpt31 …printf("[004] Expecting string/empty, got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysql_errno($lin…
34 printf("[005] Failed to drop old test table: [%d] %s\n", mysql_errno($link), mysql_error($link));
40 …g/[Table... doesn't exit], got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_e…
H A Dmysql_num_rows.phpt26 printf("[%03d] [%d] %s\n", $offset, mysql_errno($link), mysql_error($link));
54 printf("[030] [%d] %s\n", mysql_errno($link), mysql_error($link));
71 printf("[034] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_stat.phpt26 gettype($stat), $stat, mysql_errno($link), mysql_error($link));
35 gettype($stat_def), $stat_def, mysql_errno(), mysql_error());
H A Dmysql_fetch_assoc.phpt25 printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
37 printf("[007] Cannot run query, [%d] %s\n", mysql_errno($link), $mysql_error($link));
51 printf("[009] [%d] %s\n", mysql_errno($link), $mysql_error($link));
H A Dclean_table.inc11 printf("[clean] Failed to drop test table: [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_max_persistent.phpt11 printf("skip Cannot create second DB user [%d] %s", mysql_errno($link), mysql_error($link));
18 …printf("skip Cannot GRANT SELECT to second DB user [%d] %s", mysql_errno($link), mysql_error($link…
45 mysql_errno(), mysql_error());
H A Dconnect.inc43 mysql_errno(), mysql_error());
48 printf("[000-b] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_pconn_disable.phpt31 printf("[003] Cannot connect, [%d] %s\n", mysql_errno(), mysql_error());
40 printf("[005] Cannot connect, [%d] %s\n", mysql_errno(), mysql_error());
H A Dmysql_data_seek.phpt26 printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
51 printf("[011] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_get_host_info.phpt22 mysql_errno(), mysql_error());
H A Dmysql_get_server_info.phpt22 mysql_errno(), mysql_error());
H A Dbug55473.phpt36 printf("[002] [%d] %s\n", mysql_errno($conn), mysql_error($conn));
55 printf("[004] [%d] %s\n", mysql_errno($conn), mysql_error($conn));
H A Dmysql_fetch_lengths.phpt23 printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_fetch_row.phpt23 printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_free_result.phpt23 printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
H A Dmysql_trace_mode.phpt18 printf("[001] [%d] %s\n", mysql_errno($link), mysql_error($link));
/PHP-5.5/ext/mysqli/
H A Dmysqli_priv.h140 if ((MyG(report_mode) & MYSQLI_REPORT_ERROR) && mysql_errno(mysql)) { \
141 php_mysqli_report_error(mysql_sqlstate(mysql), mysql_errno(mysql), mysql_error(mysql) TSRMLS_CC); \
H A Dmysqli_nonapi.c45 static void php_mysqli_set_error(long mysql_errno, char *mysql_err TSRMLS_DC) in php_mysqli_set_error() argument
47 MyG(error_no) = mysql_errno; in php_mysqli_set_error()
247 php_mysqli_set_error(mysql_errno(mysql->mysql), (char *) mysql_error(mysql->mysql) TSRMLS_CC);
248 …php_mysqli_throw_sql_exception((char *)mysql_sqlstate(mysql->mysql), mysql_errno(mysql->mysql) TSR…
259 php_mysqli_set_error(mysql_errno(mysql->mysql), (char *) mysql_error(mysql->mysql) TSRMLS_CC);
449 if (mysql_errno(mysql->mysql)) {
453 add_assoc_long_ex(single_error, "errno", sizeof("errno"), mysql_errno(mysql->mysql));
538 s_errno = mysql_errno(mysql->mysql);
621 …php_mysqli_throw_sql_exception((char *)mysql_sqlstate(mysql->mysql), mysql_errno(mysql->mysql) TSR…
866 …php_mysqli_throw_sql_exception((char *)mysql_sqlstate(mysql->mysql), mysql_errno(mysql->mysql) TSR…
/PHP-5.5/ext/mysql/
H A Dphp_mysql_structs.h78 PHP_FUNCTION(mysql_errno);

Completed in 35 milliseconds

123