Home
last modified time | relevance | path

Searched refs:dbname (Results 1 – 25 of 155) sorted by path

1234567

/PHP-5.5/
H A D.travis.yml31 - PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1;dbname=test"
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch568 char *dbname = NULL;
601 if (dbname == NULL)
713 - free(dbname);
715 + if (dbname) {
716 + efree(dbname);
727 - free(dbname);
728 + if (dbname) {
729 + efree(dbname);
735 char *dbname;
796 - free(dbname);
[all …]
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c2595 char *dbname = NULL; in apprentice_map() local
2624 dbname = mkdbname(ms, fn, 0); in apprentice_map()
2625 if (dbname == NULL) in apprentice_map()
2723 if (dbname) { in apprentice_map()
2724 efree(dbname); in apprentice_map()
2733 if (dbname) { in apprentice_map()
2734 efree(dbname); in apprentice_map()
2753 char *dbname; in apprentice_compile() local
2760 dbname = mkdbname(ms, fn, 0); in apprentice_compile()
2762 if (dbname == NULL) in apprentice_compile()
[all …]
/PHP-5.5/ext/mysql/tests/
H A D002.phpt13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A D003.phpt21 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dbug47438.phpt13 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
40 …printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s…
H A Dbug51242.phpt33 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dbug53649.phpt58 …printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%…
H A Dclean_table.inc6 …printf("[clean] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, por…
H A Dmysql_affected_rows.phpt26 …printf("[004] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysql_client_encoding.phpt16 …printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysql_close.phpt22 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysql_connect.phpt21 …printf("[002] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
27 …printf("[003] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
33 …printf("[004] Can connect to the server using host=%s/%s, user=%s, passwd=***non_empty, dbname=%s,…
H A Dmysql_create_db.phpt23 …printf("[003] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, po…
47 …printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s…
H A Dmysql_db_name.phpt39 if ('' === ($dbname = mysql_db_name($res, $i)))
43 if ($unicode && !is_unicode($dbname)) {
46 var_inspect($dbname);
H A Dmysql_drop_db.phpt46 …printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s…
H A Dmysql_errno.phpt25 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
42 …printf("[005] Can connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, so…
H A Dmysql_error.phpt25 …printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
52 …printf("[008] Can connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, so…
H A Dmysql_list_fields.phpt55 …printf("[c001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s…
H A Dmysql_max_persistent.phpt83 …printf("[c001] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port…
H A Dmysql_pconn_kill.phpt24 …printf("[001] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
82 …printf("[012] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
89 …printf("[014] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
H A Dmysql_pconn_max_links.phpt177 …printf("[c001] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port…
H A Dmysql_pconnect.phpt24 …printf("[002] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, port=…
30 …printf("[003] Can connect to the server using host=%s/%s, user=%s, passwd=***non_empty, dbname=%s,…
H A Dmysql_query.phpt101 …printf("[clean] Cannot connect to the server using host=%s/%s, user=%s, passwd=***, dbname=%s, por…
H A Dmysql_select_db.phpt19 …printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
29 if (!$res = mysql_query("SELECT DATABASE() AS dbname", $link))
35 if ($row['dbname'] !== (string)$db)
36 printf("[007] Expecting database '%s', found '%s'\n", $db, $row['dbname']);
38 var_dump($row['dbname']);
46 if (!$res = mysql_query("SELECT DATABASE() AS dbname", $link))
52 if (strtolower($row['dbname']) !== 'mysql')
53 printf("[010] Expecting database 'mysql', found '%s'\n", $row['dbname']);

Completed in 33 milliseconds

1234567