提交 dc7a504e 编写于 作者: aaronchen2k2k's avatar aaronchen2k2k

new features for 1.1

上级 d2178cfb
...@@ -111,14 +111,14 @@ func ConvertExcelToSQLiteIfNeeded(dbName string, path string) { ...@@ -111,14 +111,14 @@ func ConvertExcelToSQLiteIfNeeded(dbName string, path string) {
valList = valList + "(" valList = valList + "("
for colIndex, colCell := range row { for colIndex, colCell := range row {
if colIndex >= colCount {
break
}
if colIndex > 0 { if colIndex > 0 {
valList = valList + ", " valList = valList + ", "
} }
valList = valList + "'" + colCell + "'" valList = valList + "'" + colCell + "'"
if colIndex >= colCount {
break
}
} }
valList = valList + ")" valList = valList + ")"
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册