bugfix
This commit is contained in:
parent
942761209d
commit
009fb014cd
@ -1,7 +1,7 @@
|
||||
import re
|
||||
from .sqlite3or import Sqlite3or
|
||||
from .sqlite3or import SQLite3or
|
||||
|
||||
class Aiosqliteor(Sqlite3or):
|
||||
class Aiosqliteor(SQLite3or):
|
||||
@classmethod
|
||||
def isMe(self,name):
|
||||
return name=='aiosqlite'
|
||||
|
@ -17,6 +17,7 @@ from .sor import SQLor
|
||||
from .mssqlor import MsSqlor
|
||||
from .oracleor import Oracleor
|
||||
from .sqlite3or import SQLite3or
|
||||
from .aiosqliteor import Aiosqliteor
|
||||
from .mysqlor import MySqlor
|
||||
from .aiomysqlor import AioMysqlor
|
||||
from .aiopostgresqlor import AioPostgresqlor
|
||||
|
@ -22,7 +22,7 @@ if __name__ == '__main__':
|
||||
sys.exit(1)
|
||||
dbs = {
|
||||
"db":{
|
||||
"driver":"sqlite3",
|
||||
"driver":"aiosqlite",
|
||||
"kwargs":{
|
||||
"dbname":sys.argv[1]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user