type github.com/lib/pq.rows
19 uses
github.com/lib/pq (current package)
conn.go#L634: func (cn *conn) simpleQuery(q string) (res *rows, err error) {
conn.go#L654: res = &rows{
conn.go#L683: res = &rows{cn: cn}
conn.go#L820: func (cn *conn) query(query string, args []driver.Value) (_ *rows, err error) {
conn.go#L840: rows := &rows{cn: cn}
conn.go#L847: return &rows{
conn.go#L1254: return &rows{
conn.go#L1372: type rows struct {
conn.go#L1384: func (rs *rows) Close() error {
conn.go#L1406: func (rs *rows) Columns() []string {
conn.go#L1410: func (rs *rows) Result() driver.Result {
conn.go#L1417: func (rs *rows) Tag() string {
conn.go#L1421: func (rs *rows) Next(dest []driver.Value) (err error) {
conn.go#L1477: func (rs *rows) HasNextResultSet() bool {
conn.go#L1482: func (rs *rows) NextResultSet() error {
rows.go#L73: func (rs *rows) ColumnTypeScanType(index int) reflect.Type {
rows.go#L78: func (rs *rows) ColumnTypeDatabaseTypeName(index int) string {
rows.go#L85: func (rs *rows) ColumnTypeLength(index int) (length int64, ok bool) {
rows.go#L91: func (rs *rows) ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool) {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |