We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc9b75 commit b1ac89fCopy full SHA for b1ac89f
src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java
@@ -16,26 +16,23 @@ public class JDBC2Tests extends TestSuite
16
*/
17
public static String getURL()
18
{
19
- //return System.getProperty("database");
20
- return "test";
+ return System.getProperty("database");
21
}
22
23
/*
24
* Returns the Postgresql username
25
26
public static String getUser()
27
28
- return "davec";
29
- //return System.getProperty("username");
+ return System.getProperty("username");
30
31
32
33
* Returns the user's password
34
35
public static String getPassword()
36
37
- return null;
38
- //return System.getProperty("password");
+ return System.getProperty("password");
39
40
41
0 commit comments