Add Logging feature attribute

This commit is contained in:
ycc 2023-09-28 16:56:47 +02:00
parent d457fc76b8
commit be081e6e75

7
db.go
View File

@ -17,9 +17,10 @@ import (
) )
type Db struct { type Db struct {
Driver string Driver string
Url string Url string
conn *sql.DB LogQueries bool
conn *sql.DB
} }
// AssRow : associative row type // AssRow : associative row type