Lines Matching refs:user
19 $user = 'pdo_test_'.rand(5, 400);
22 // Assume that if we can't create or drop a user, this test needs to be skipped
24 $db->exec("DROP USER IF EXISTS $user");
25 $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
32 $testConn = new PDO($dsn, $user, $pass);
37 $db->exec("DROP USER $user");
47 $user = "pdo_test_$rand";
48 $template = "CREATE USER $user WITH PASSWORD '%s'";
49 $dropUser = "DROP USER $user";
52 // Create temp user with leading single quote
55 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "'mypassword");
60 // Remove the user