blob: 1617c13df03301c1e3257d3dee179c769d2dcc2f (
plain) (
blame)
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
29
30
31
32
33
34
|
# -*- coding: utf8 -*-
#
# Copyright (C) 2015 Evol Online
# Author: Andrei Karas (4144)
from code.fileutils import readFile
def saveCharRegNumDbTable(users):
dstFile = "newdb/char_reg_num_db.sql"
firstLine = True
tpl = readFile("templates/char_reg_num_db.sql")
with open(dstFile, "w") as w:
w.write(tpl)
w.write("INSERT INTO `char_reg_num_db` VALUES ")
for userId in users:
user = users[userId]
for varKey in user.variables:
if varKey == "ShipQuests":
continue
varValue = user.variables[varKey]
if firstLine == False:
w.write(",\n")
else:
firstLine = False
w.write(("({char_id},'{key}',{index},{value})").format(
char_id = user.char_id,
key = varKey,
index = "0",
value = varValue
))
w.write("\n")
|