Home
last modified time | relevance | path

Searched refs:dbname (Results 1 – 25 of 145) sorted by last modified time

123456

/PHP-7.4/ext/pgsql/
H A Dpgsql.c1300 char *host=NULL,*port=NULL,*options=NULL,*tty=NULL,*dbname=NULL,*connstring=NULL; local
1348 dbname = Z_STRVAL(args[ZEND_NUM_ARGS()-1]);
1380 pgsql = PQsetdb(host, port, options, tty, dbname);
1413 le->ptr = PQsetdb(host,port,options,tty,dbname);
1484 pgsql = PQsetdb(host,port,options,tty,dbname);
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch715 if (dbname == NULL)
835 - free(dbname);
836 + if (dbname) {
837 + efree(dbname);
848 - free(dbname);
850 + if (dbname) {
851 + efree(dbname);
883 char *dbname;
893 if (dbname == NULL)
935 - free(dbname);
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c614 char *user, *password, *dbname; in PHP_FUNCTION() local
621 …k, mysqli_link_class_entry, &user, &user_len, &password, &password_len, &dbname, &dbname_len) == F… in PHP_FUNCTION()
631 rc = mysqlnd_change_user_ex(mysql->mysql, user, password, dbname, FALSE, (size_t) password_len); in PHP_FUNCTION()
633 rc = mysql_change_user(mysql->mysql, user, password, dbname); in PHP_FUNCTION()
2209 char *dbname; local
2212 …ZEND_NUM_ARGS(), getThis(), "Os", &mysql_link, mysqli_link_class_entry, &dbname, &dbname_len) == F…
2217 if (mysql_select_db(mysql->mysql, dbname)) {
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_report.phpt180 …] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socke…
193 …] Can connect to the server using host=%s, user=%s, passwd=***non_empty, dbname=%s, port=%s, socke…
H A Dmysqli_auth_pam.phpt10 …die(sprintf("SKIP Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port…
105 …Cannot connect to the server using host=%s, user=pamtest, passwd=pamtest dbname=%s, port=%s, socke…
H A Dbug74779.phpt14 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_expire_password.phpt10 …die(sprintf("SKIP Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port…
H A Dmysqli_store_result_copy.phpt51 …printf("[007] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
154 …printf("[022] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_unclonable.phpt14 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_warning_unclonable.phpt17 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dtable.inc5 …printf("Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socke…
H A Dmysqli_stmt_fetch_bit.phpt22 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_stmt_get_result_bit.phpt41 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_stmt_get_warnings.phpt12 …die(sprintf("skip Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port…
H A Dmysqli_stmt_unclonable.phpt14 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
H A Dmysqli_stmt_execute_stored_proc_next_result.phpt20 …printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s,…
/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_76448.phpt15 $dsn = "firebird:dbname=inet://$address/test";
H A Dbug_76449.phpt15 $dsn = "firebird:dbname=inet://$address/test";
H A Dbug_76450.phpt15 $dsn = "firebird:dbname=inet://$address/test";
H A Dbug_76452.phpt12 $dsn = "firebird:dbname=inet://$address/test";
H A Dcommon.phpt24 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
H A Dpayload_test.phpt17 $dsn = "firebird:dbname=inet://$address/test";
/PHP-7.4/appveyor/
H A Dtest_task.bat30 set PDO_MYSQL_TEST_DSN=mysql:host=%PDO_MYSQL_TEST_HOST%;port=%PDO_MYSQL_TEST_PORT%;dbname=test
37 rem set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=postgres password=Password12!
38 echo ^<?php $conn_str = "host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%";…
39 set PDO_PGSQL_TEST_DSN=pgsql:host=127.0.0.1 port=5432 dbname=test user=%PGUSER% password=%PGPASSWOR…
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c589 char *dbname; local
828 dbname = vars[1].optval;
852 if (dbname) {
853 dbname_len = strlen(dbname);
860 …if (mysqlnd_connect(H->server, host, dbh->username, dbh->password, password_len, dbname, dbname_le…
863 …if (mysql_real_connect(H->server, host, dbh->username, dbh->password, dbname, port, unix_socket, c…
/PHP-7.4/
H A D.travis.yml62 - PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1;dbname=test"
66 - PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password="

Completed in 85 milliseconds

123456