Refactored DatabaseFactory.
This commit is contained in:
6
trunk/dist/game/config/General.ini
vendored
6
trunk/dist/game/config/General.ini
vendored
@@ -256,12 +256,6 @@ ListOfProtectedItems = 0
|
||||
# Default: True
|
||||
DatabaseCleanUp = True
|
||||
|
||||
# The time before a database connection closes (in milliseconds)
|
||||
# If a query takes longer to execute than the time defined here, the server will throw "Unclosed Connection!" error.
|
||||
# If you get often this error message, try increasing this.
|
||||
# Default: 60000ms
|
||||
ConnectionCloseTime = 20000
|
||||
|
||||
# This is the interval (in minutes), that the gameserver will update a players information such as location.
|
||||
# The higher you set this number, there will be less character information saving so you will have less accessessing of the database and your hard drive(s).
|
||||
# The lower you set this number, there will be more frequent character information saving so you will have more access to the database and your hard drive(s).
|
||||
|
||||
19
trunk/dist/game/config/Server.ini
vendored
19
trunk/dist/game/config/Server.ini
vendored
@@ -42,27 +42,32 @@ GameserverPort = 7777
|
||||
# Driver = org.hsqldb.jdbcDriver
|
||||
# Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
|
||||
Driver = com.mysql.jdbc.Driver
|
||||
|
||||
# Database URL
|
||||
# URL = jdbc:mysql://localhost/l2jmobius (default)
|
||||
# URL = jdbc:hsqldb:hsql://localhost/l2jmobius
|
||||
# URL = jdbc:sqlserver://localhost/database = l2jgs/user = sa/password =
|
||||
# URL = jdbc:sqlserver://localhost/database = l2jmobius/user = sa/password =
|
||||
URL = jdbc:mysql://localhost/l2jmobius?useUnicode=true&characterEncoding=utf-8
|
||||
|
||||
# Database user info (default is "root" but it's not recommended)
|
||||
Login = root
|
||||
|
||||
# Database connection password
|
||||
Password =
|
||||
|
||||
# Database Connection Pool
|
||||
# Default: C3P0
|
||||
# Available: C3P0, HikariCP, BoneCP
|
||||
ConnectionPool = C3P0
|
||||
|
||||
# Default: 500
|
||||
MaximumDbConnections = 500
|
||||
|
||||
# Default: 0
|
||||
MaximumDbIdleTime = 0
|
||||
|
||||
# The time before a database connection closes (in milliseconds)
|
||||
# If a query takes longer to execute than the time defined here, the server will throw "Unclosed Connection!" error.
|
||||
# If you get often this error message, try increasing this.
|
||||
# Default: 60000ms
|
||||
ConnectionCloseTime = 60000
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Misc Server Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
@@ -133,4 +138,4 @@ ClanNameTemplate = .*
|
||||
|
||||
# Maximum number of characters per account.
|
||||
# Default: 7 (client limit)
|
||||
CharMaxNumber = 7
|
||||
CharMaxNumber = 7
|
||||
|
||||
Reference in New Issue
Block a user