This commit is contained in:
yumoqing 2025-10-19 12:00:04 +08:00
parent 3426bda470
commit 49f866a1aa
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class MySqlor(SQLor):
} }
@classmethod @classmethod
def isMe(self,name): def isMe(self,name):
if name=='pymysql': if name=='mysql':
return True return True
return False return False

View File

@ -90,7 +90,7 @@ class SQLor(object):
def unpassword(self): def unpassword(self):
key=getConfig().password_key key=getConfig().password_key
self.desc.kwargs.password = aes_decode_b64(key, self.desc.kwargs.password) self.dbdesc.password = aes_decode_b64(key, self.dbdesc.password)
async def get_schema(self): async def get_schema(self):
def concat_idx_info(idxs): def concat_idx_info(idxs):