Lines Matching refs:user
18 $user = 'pdo_test62479';
21 // Assume that if we can't create or drop a user, this test needs to be skipped
23 $db->exec("DROP USER IF EXISTS $user");
24 $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
31 $testConn = new PDO($dsn, $user, $pass);
36 $db->exec("DROP USER $user");
45 $user = "pdo_test62479";
46 $template = "CREATE USER $user WITH PASSWORD '%s'";
49 // Create temp user with space in password
52 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "my password");
57 // Remove the user
58 $pdo->query("DROP USER $user");
60 // Create a user with a space and single quote
64 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "my pass'word");