forked from go-sql-driver/sphinxql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrows.go
69 lines (56 loc) · 1.22 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
// Copyright 2013 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 sphinxql
import (
"database/sql/driver"
"errors"
"io"
)
type sphinxqlField struct {
name string
fieldType byte
flags fieldFlag
}
type sphinxqlRows struct {
mc *sphinxqlConn
columns []sphinxqlField
eof bool
}
func (rows *sphinxqlRows) Columns() (columns []string) {
columns = make([]string, len(rows.columns))
for i := range columns {
columns[i] = rows.columns[i].name
}
return
}
func (rows *sphinxqlRows) 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()
}
return
}
func (rows *sphinxqlRows) Next(dest []driver.Value) error {
if rows.eof {
return io.EOF
}
if rows.mc == nil {
return errors.New("Invalid Connection")
}
// Fetch next row from stream
err := rows.readRow(dest)
if err == io.EOF {
rows.eof = true
}
return err
}