db: modify mysql/pg/sqlite interface for pool working (#24780)

This commit is contained in:
kbkpbot 2025-06-27 07:25:13 +08:00 committed by GitHub
parent f62b5fd7f2
commit 7039081d66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 214 additions and 21 deletions

View file

@ -13,5 +13,5 @@ fn main() {
for row in res.rows() {
println(row.vals.join(', '))
}
conn.close()
conn.close()!
}