Browse Source

Don't assume everybody will use the login and pwd to my db.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270297 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
bf8e21b63d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/testcases/org/apache/tools/ant/taskdefs/SQLExecTest.java

+ 1
- 1
src/testcases/org/apache/tools/ant/taskdefs/SQLExecTest.java View File

@@ -214,7 +214,7 @@ public class SQLExecTest extends TestCase {
props = getProperties("oracle.jdbc.driver.OracleDriver", "test", "test", "jdbc:oracle:thin:@127.0.0.1:1521:orcl");
break;
case MYSQL:
props = getProperties("org.gjt.mm.mysql.Driver", "sbailliez", "apollo", "jdbc:mysql://127.0.0.1:3306/test");
props = getProperties("org.gjt.mm.mysql.Driver", "test", "test", "jdbc:mysql://127.0.0.1:3306/test");
break;
case NULL:
default:


Loading…
Cancel
Save