type github.com/lib/pq.stmt

8 uses

	github.com/lib/pq (current package)
		conn.go#L759: func (cn *conn) prepareTo(q, stmtName string) *stmt {
		conn.go#L760: 	st := &stmt{cn: cn, name: stmtName}
		conn.go#L1205: type stmt struct {
		conn.go#L1214: func (st *stmt) Close() (err error) {
		conn.go#L1247: func (st *stmt) Query(v []driver.Value) (r driver.Rows, err error) {
		conn.go#L1260: func (st *stmt) Exec(v []driver.Value) (res driver.Result, err error) {
		conn.go#L1271: func (st *stmt) exec(v []driver.Value) {
		conn.go#L1313: func (st *stmt) NumInput() int {