diff --git a/conn.go b/conn.go index 4d25cb4..658411d 100644 --- a/conn.go +++ b/conn.go @@ -46,7 +46,7 @@ func (c *Conn) Close() error { return releaseHandle(h) } -//Query method executes the statement directly if no params present, or as prepared statement +//Query method executes the statement with out prepare if no args provided, and a driver.ErrSkip otherwise (handled by sql.go to execute usual preparedStmt) func (c *Conn) Query(query string, args []driver.Value) (driver.Rows, error) { if len(args) > 0 { // Not implemented for queries with parameters