更新不重要的信息

This commit is contained in:
NH
2025-04-24 10:25:24 +08:00
parent 8783845c75
commit 50ec1b35d0
3 changed files with 4 additions and 11 deletions

View File

@@ -19,7 +19,6 @@ function mysql_conn.new(__module)
else
instance.module = __module
end
print("M:",instance.module)
return instance
end
--[[

View File

@@ -50,13 +50,7 @@ end
@return 返回一个 select 对象
]]
function mysql_pool:select()
print("SELECT_DEBUG_0:")
local s = self.module:select()
print("SELECT_DEBUG_1:",s)
local s2 = select.new(s)
print("SELECT_DEBUG_2:",s2)
return s2
--return self.module:select()
return select.new(self.module:select())
end
--[[