forked from go-sql-driver/mysql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrows.go
99 lines (83 loc) · 1.89 KB
/
rows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
//
// Copyright 2012 Julien Schmidt. All rights reserved.
// http://www.julienschmidt.com
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.
package mysql
import (
"database/sql/driver"
"errors"
"io"
)
type mysqlField struct {
name string
fieldType FieldType
flags FieldFlag
}
type mysqlRows struct {
mc *mysqlConn
binary bool
columns []mysqlField
eof bool
}
func (rows *mysqlRows) Columns() (columns []string) {
columns = make([]string, len(rows.columns))
for i := 0; i < cap(columns); i++ {
columns[i] = rows.columns[i].name
}
return
}
func (rows *mysqlRows) Close() (err error) {
defer func() {
rows.mc = nil
}()
// Remove unread packets from stream
if !rows.eof {
if rows.mc == nil {
return errors.New("Invalid Connection")
}
_, err = rows.mc.readUntilEOF()
if err != nil {
return
}
}
return nil
}
// Next returns []driver.Value filled with either nil values for NULL entries
// or []byte's for all other entries. Type conversion is done on rows.scan(),
// when the dest type is know, which makes type conversion easier and avoids
// unnecessary conversions.
func (rows *mysqlRows) Next(dest []driver.Value) error {
if rows.eof {
return io.EOF
}
if rows.mc == nil {
return errors.New("Invalid Connection")
}
columnsCount := cap(dest)
// Fetch next row from stream
var row *[]*[]byte
var err error
if rows.binary {
row, err = rows.mc.readBinaryRow(rows)
} else {
row, err = rows.mc.readRow(columnsCount)
}
if err != nil {
if err == io.EOF {
rows.eof = true
}
return err
}
for i := 0; i < columnsCount; i++ {
if (*row)[i] == nil {
dest[i] = nil
} else {
dest[i] = *(*row)[i]
}
}
return nil
}