diff --git a/mysql.go b/mysql.go index 2a868cb..4ba258d 100644 --- a/mysql.go +++ b/mysql.go @@ -50,9 +50,11 @@ func (this *Mysql) Query(query string, args ...interface{}) (*sql.Rows, error) { return rows, err } +/* func (this *Mysql) QueryRow(query string, args ...interface{}) *sql.Row { return this.db.QueryRow(query, args...) } +*/ func (this *Mysql) Exec(query string, args ...interface{}) (sql.Result, error) { result, err := this.db.Exec(query, args...)