Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Barry
/
ffxi-db-converter
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
03ad19d5
authored
2016-09-29 14:45:33 +0000
by
Barry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Removed debug print
1 parent
0c542402
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
convert.py
convert.py
View file @
03ad19d
...
...
@@ -49,7 +49,7 @@ for filename in os.listdir(args.sourcexml):
try
:
fields
=
(
', '
.
join
(
'"'
+
item
+
'"'
for
item
in
field_list
[
filename
]))
query
=
"CREATE TABLE
\"
%
s
\"
(
%
s)"
%
(
filename
,
fields
)
print
(
query
)
#
print (query)
c
.
execute
(
query
)
conn
.
commit
()
except
sqlite3
.
OperationalError
:
...
...
Please
register
or
sign in
to post a comment