~maria-captains/mariadb-java-client/trunk

« back to all changes in this revision

Viewing changes to src/test/java/org/mariadb/jdbc/UnicodeTest.java

  • Committer: Vladislav Vaintroub
  • Date: 2012-11-27 17:47:27 UTC
  • Revision ID: wlad@montyprogram.com-20121127174727-wfvxc049fuwa2c5x
rebranding to mariadb driver

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.skysql.jdbc;
 
1
package org.mariadb.jdbc;
2
2
 
3
3
import org.junit.After;
4
4
import org.junit.Before;
23
23
    Connection connection;
24
24
    @Before
25
25
    public void before() throws SQLException{
26
 
      connection = DriverManager.getConnection("jdbc:drizzle://root@localhost:3306/test");
 
26
      connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?user=root");
27
27
    }
28
28
    @After
29
29
    public void after() throws SQLException {