Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/de/bezier/data/sql/MySQL.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
*
*
* @author Florian Jenett - [email protected]
*
* @modifyer Gil Park - [email protected]
* created: 07.05.2005 - 12:46 Uhr
* modified: 2012-02
*
*
*/

public class MySQL
Expand Down Expand Up @@ -49,8 +49,8 @@ private void init ()
{
this.driver = "com.mysql.jdbc.Driver";
this.type = "mysql";

this.url = "jdbc:" + type + "://" + server + "/" + database;
//UTF8 Encoding
this.url = "jdbc:" + type + "://" + server + "/" + database + "?useUnicode=yes&characterEncoding=UTF-8";
}

public String[] getTableNames ()
Expand Down