master
yumoqing 2023-05-11 16:43:14 +08:00
parent c5fe11f3d0
commit 7903c00196
10 changed files with 3 additions and 1 deletions

0
dataloader/README.md 100644 → 100755
View File

0
dataloader/database.png 100644 → 100755
View File

Before

Width:  |  Height:  |  Size: 233 KiB

After

Width:  |  Height:  |  Size: 233 KiB

View File

@ -14,6 +14,8 @@ class CBObject:
async def handle(self,ws):
db = DBPools()
async with db.sqlorContext(self.db) as sor:
delete_sql = "delete from %s" % self.tbl
await sor.sqlExe(delete_sql, {})
info = await sor.I(self.tbl)
for rec in getRecord(ws):
r = [ v for v in rec.values() if v is not None ]

0
dataloader/macos/dataloader.spec 100644 → 100755
View File

0
dataloader/table1.png 100644 → 100755
View File

Before

Width:  |  Height:  |  Size: 181 KiB

After

Width:  |  Height:  |  Size: 181 KiB

0
dataloader/table2.png 100644 → 100755
View File

Before

Width:  |  Height:  |  Size: 200 KiB

After

Width:  |  Height:  |  Size: 200 KiB

2
dataloader/typeconv.py 100644 → 100755
View File

@ -14,7 +14,7 @@ def conv(info, name, value):
for f in fields:
if f['name'] == name:
f = convfuncs.get(f['type'], None)
if f is None:
if f is None or value is None:
return value
return f(value)
return value

0
dataloader/ubuntu/dataloader.spec 100644 → 100755
View File

View File

0
sqlor/const.py 100644 → 100755
View File