SQL
Overview
Convert Static Game Data into SQL (CSV) format.
Example
Basic/Basic.xlsm#Dictionary
| A | B | C |
|---|---|---|
| Id | Name | |
| 1 | Rice | |
| 2 | Bread | |
| 3 | Pasta |
yaml
header:
input_path:
- path: Basic/Basic.xlsm
sheet: 辞書
row: 1
base_type: Normal
source_type: Normal
container_type: Dictionary
output_path: Basic
name: BasicDictionary
fields:
- key: Id
name: id
type: Int
- key: Name
name: name
type: String
...
Output SQL
Id,Name
1,ご飯
2,パン
3,パスタ