SQLite

/.module.json (731 B)

 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "SQLite",
"icon": "database",
"description": "Provides an API for accessing SQLite databases",
"authorName": "Kyle U",
"authorEmail": "kyle@kyleu.com",
"license": "CC0",
"sourcecode": "https://github.com/kyleu/projectforge/tree/master/module/sqlite",
"configVars": [
{
"key": "db_file",
"type": "string",
"description": "filename and path for the default SQLite connection"
},
{
"key": "db_schema",
"type": "string",
"description": "schema for the default SQLite connection"
},
{
"key": "db_debug",
"type": "bool",
"description": "when set, logs all database interactions"
}
],
"requires": ["database"],
"priority": 10
}