fix the sqllite path

This commit is contained in:
Chris 2017-02-23 21:04:10 +01:00
parent b8c82e9567
commit de54bcc6b2
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class SQLLite implements IDB
try
{
m_connection = DriverManager.getConnection("jdbc:sqlite:" + m_plugin.getDataFolder().getAbsolutePath() + "playtime.db");
m_connection = DriverManager.getConnection("jdbc:sqlite:" + m_plugin.getDataFolder().getAbsolutePath() + "/playtime.db");
Statement _statement = m_connection.createStatement();