public interface WorldDatabase
Modifier and Type | Method and Description |
---|---|
void |
execute(java.lang.String sql)
Executes the given SQL statement, for example a CREATE or DELETE statement.
|
java.sql.ResultSet |
executeQuery(java.lang.String sql)
Executes the given SQL statement and returns a
ResultSet object. |
void |
executeUpdate(java.lang.String sql)
Executes the given SQL statement, which may be an INSERT, UPDATE or DELETE
statement.
|
Chunk |
getChunkFromDb(int cx,
int cy,
int cz)
Gets a chunk from the database.
|
ChunkLOD |
getChunkLODFromDb(int cx,
int cz)
Gets an LOD chunk from the database.
|
java.lang.String |
getDatabaseName()
Gets the database name.
|
java.lang.String |
getPath()
Gets the path to the database (when using MySQL, this function gets the
IP and port of the MySQL server).
|
DatabaseType |
getType()
Gets the database type.
|
java.lang.String |
getWorldInfo(java.lang.String key)
Gets a value from the
WorldInfos table. |
void |
saveChunkLODToDb(ChunkLOD chunkLOD)
Saves a
ChunkLOD to the database. |
void |
saveChunkToDb(Chunk chunk)
Saves a
Chunk to the database. |
void |
setWorldInfo(java.lang.String key,
java.lang.String value)
Sets a key/value in the
WorldInfos table. |
DatabaseType getType()
java.lang.String getPath()
java.lang.String getDatabaseName()
java.lang.String getWorldInfo(java.lang.String key)
WorldInfos
table. Gamemode
, Seed
, Version
,
Worldtype
, Caves
, Vegetations
,
OreAmount
, DisabledNPCs
, Creationdate
,
Spawnposition
, Spawnrotation
, Time
,
Spawninventory
key
- the key.void setWorldInfo(java.lang.String key, java.lang.String value)
WorldInfos
table. This function can
also be used to create new keys in the table. Be careful that this may
interfere with future updates of the game!key
- the key you want to set.value
- the according value.Chunk getChunkFromDb(int cx, int cy, int cz)
Chunk
object. Note that this function always reads the chunk from the database,
if there is a cached version of the same chunk in the memory, it is not
taken into account.cx
- the x chunk offset.cy
- the y chunk offset.cz
- the z chunk offset.Chunk
object which represents the chunk.void saveChunkToDb(Chunk chunk)
Chunk
to the database.chunk
- the chunk you want to save.ChunkLOD getChunkLODFromDb(int cx, int cz)
ChunkLOD
object. Note that this function always reads the LOD chunk from the database,
if there is a cached version of the same LOD chunk in the memory, it is not
taken into account.cx
- the x chunk offset.cz
- the z chunk offset.ChunkLOD
object which represents the LOD chunk.void saveChunkLODToDb(ChunkLOD chunkLOD)
ChunkLOD
to the database.chunkLOD
- the LOD chunk you want to save.void execute(java.lang.String sql)
sql
- the SQL statement.void executeUpdate(java.lang.String sql)
sql
- the SQL statement, INSERT, UPDATE or DELETE.java.sql.ResultSet executeQuery(java.lang.String sql) throws java.sql.SQLException
ResultSet
object.sql
- the SQL statement, typically a SELECT statement.java.sql.SQLException
- If a database access error occurs.