Difference between revisions of "Setting up Database"

From Nexus Mods Wiki
Jump to: navigation, search
m
m
Line 47: Line 47:
  
 
 
 
 
 +
  
  
Line 56: Line 57:
 
#Create ''ConfigDB'' database.  
 
#Create ''ConfigDB'' database.  
 
#Add ''uuid-ossp ''extension to that database.  
 
#Add ''uuid-ossp ''extension to that database.  
#Edit ''Data_reference/sequences.sql ''number 10578 to [https://forums.nexusmods.com/index.php?/topic/8510843-register-unique-modding-ids-20/ the ID you claimed].  
+
#Edit ''Data_reference/sequences.sql ''number 10578 to [//forums.nexusmods.com/index.php?/topic/8510843-register-unique-modding-ids-20/ the ID you claimed].  
 
#Migrate files&nbsp;<br/> <br/> <tt>psql.exe -f&nbsp;Data_reference/modding.sql -U&nbsp;postgres –d&nbsp;ConfigDB -q</tt><br/> <tt>psql.exe -f&nbsp;Data_reference/public.sql -U&nbsp;postgres –d&nbsp;ConfigDB -q</tt><br/> <tt>psql.exe -f Data_reference/sequences.sql -U postgres –d ConfigDB –q&nbsp;</tt><br/> &nbsp;  
 
#Migrate files&nbsp;<br/> <br/> <tt>psql.exe -f&nbsp;Data_reference/modding.sql -U&nbsp;postgres –d&nbsp;ConfigDB -q</tt><br/> <tt>psql.exe -f&nbsp;Data_reference/public.sql -U&nbsp;postgres –d&nbsp;ConfigDB -q</tt><br/> <tt>psql.exe -f Data_reference/sequences.sql -U postgres –d ConfigDB –q&nbsp;</tt><br/> &nbsp;  
 
#Configure your&nbsp;''user.cfg''&nbsp;in root directory<br/> <br/> wh_sys_SQLServer = "127.0.0.1"<br/> wh_sys_SQLDatabase = "ConfigDB"<br/> wh_sys_SQLUser = "postgres"<br/> wh_sys_SQLPassword = "'''YOUR DATABASE PASSWORD'''"<br/> wh_sys_SQLBranch = "modding"<br/> wh_sys_PreferredDB = SQL, TBL, XML<br/> wh_sys_SQLWritable = 1  
 
#Configure your&nbsp;''user.cfg''&nbsp;in root directory<br/> <br/> wh_sys_SQLServer = "127.0.0.1"<br/> wh_sys_SQLDatabase = "ConfigDB"<br/> wh_sys_SQLUser = "postgres"<br/> wh_sys_SQLPassword = "'''YOUR DATABASE PASSWORD'''"<br/> wh_sys_SQLBranch = "modding"<br/> wh_sys_PreferredDB = SQL, TBL, XML<br/> wh_sys_SQLWritable = 1  

Revision as of 20:23, 20 March 2020

Database

The Game database contains all the game data, such as items, dialogues, perks, etc. The modding pack contains a dump of the game database in SQL format. In this tutorial we are going to use PostreSQL hosted locally on your computer, which the modding tools will connect to. 

First download and install PostreSQL from their website. (Do not install version 12, as this might cause a missing column "adsrc" error when you later run the sequences.sql script) You will also want to install the 64-bit PosgreSQL ODBC driver, which you can get from https://odbc.postgresql.org/. After install the database server should be up and running. Then we open pgAdmin (comes with the PostgreSQL package) tool and connect to the server. After connecting to the server we have to create a new database called ConfigDB (the name is unfortunatley hardcoded into some of the tools). When created add new uuid-ossp extention to this database.

Setting_Up_Database_image1.jpg

If you do not have acces to the pgAdmin you can run this via command line using psql.exe (comes with PostgreSQL package) with the following commands. 

CREATE DATABASE ConfigDB;
CREATE EXTENSION "uuid-ossp";

Note that creating your database through the psql tool will result in stripping out the case sensitivity (ConfigDB becomes configdb). The mod tools do not appear to require precise case for the database name,  but other SQL tools (such as running psql from the command line in the example below) might.

After completing first step we use psql.exe or cmd to restore the database from provided dumps.

<PostgreSQL Installation Path>/bin/psql.exe -f <KCD Installation Path>/Data_reference/modding.sql -U postgres –d ConfigDB -q 

<PostgreSQL Installation Path>/bin/psql.exe -f <KCD Installation Path>/Data_reference/public.sql -U postgres –d ConfigDB -q 

You will be asked for your database password again. Ideally this command should run with no output of any kind (the -q switch hides all non-errors, and there should be no errors). In your database, there should be now a schema called modding with 468 tables.  

 



Autoincrement

WARNING: This process was changed completely in version 2 of the modding tools. Make sure you have the new sequences.sql file

Some tables use autoincrement to generate IDs for new entries. If you are going to create new dialogues, you are going to need to adjust the initial value for this autoincrement to a value unique for your mod. If you don’t, your mod will clash with any other mods that also failed to set a unique value. To do this, pick an offset (unofficial registry of IDs for modders), then run following command (replace X with your selected offset): 

<PostgreSQL Installation Path>/bin/psql.exe -f <KCD Installation Path>/Data_reference/sequences.sql -U postgres –d ConfigDB -v sequenceoffset=X –q

Setting up tools 

There are several tools that work with the SQL database. Most of them require you to set up correct registry keys which they read connection information from. To do that, modify file Tools/!registry/db.reg  (you only need to modify the password, postgres is the default user) and then run it. All of the tools, except the Sandbox editor, use these registry keys. To get the Sandbox to connect, fill in correct connection information in user.cfg. Sandbox editor also requires an ODBC Driver to use. Install one for postgreSQL from their site (use 64-bit version). 

 

Working with Database

The database can be edited with any SQL client you prefer, or you can use our custom tool.  It is a plugin for MS Excel, which simplifies editing tables by unpacking foreign keys. To use it, you need to install in from Tools/ExcelDbAddin2, which installs it directly into MS Excel (it can be removed at any time in “Add or Remove programs”). It will appear as a new menu item called WHS DB

Any changes made to the database will be visible in the Sandbox editor (with the exception of Localization). The game, however, reads the database from XML files inside Tables.pak or mod PAK files. To create such PAKs, use the editor’s modding window .

 

 


TL;DR

  1. Install PostgreSQL server.
  2. Install ODBC driver (64bit) for PostgreSQL.
  3. Open pgAdmin, it's installed with PostgreSQL package.
  4. Create ConfigDB database.
  5. Add uuid-ossp extension to that database.
  6. Edit Data_reference/sequences.sql number 10578 to the ID you claimed.
  7. Migrate files 

    psql.exe -f Data_reference/modding.sql -U postgres –d ConfigDB -q
    psql.exe -f Data_reference/public.sql -U postgres –d ConfigDB -q
    psql.exe -f Data_reference/sequences.sql -U postgres –d ConfigDB –q 
     
  8. Configure your user.cfg in root directory

    wh_sys_SQLServer = "127.0.0.1"
    wh_sys_SQLDatabase = "ConfigDB"
    wh_sys_SQLUser = "postgres"
    wh_sys_SQLPassword = "YOUR DATABASE PASSWORD"
    wh_sys_SQLBranch = "modding"
    wh_sys_PreferredDB = SQL, TBL, XML
    wh_sys_SQLWritable = 1
  9.  
  10. Done, start editor.