forked from lunny/godbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.go
61 lines (55 loc) · 1.28 KB
/
result.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
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package odbc
import (
"database/sql/driver"
"errors"
"strconv"
)
type Result struct {
rowCount int64
lastInsertId int64
c *Conn
}
func (r *Result) LastInsertId() (int64, error) {
if r.lastInsertId == 0 {
stmt, err := r.c.Prepare("SELECT @@Identity AS lastInsertId")
if err != nil {
return 0, err
}
var args []driver.Value
rows, err := stmt.Query(args)
if err != nil {
return 0, err
}
defer rows.Close()
dest := make([]driver.Value, 1)
err = rows.Next(dest)
if err != nil {
return 0, err
}
switch dest[0].(type) {
case int64:
r.lastInsertId = dest[0].(int64)
case int32:
r.lastInsertId = int64(dest[0].(int32))
case float64:
r.lastInsertId = int64(dest[0].(float64))
case float32:
r.lastInsertId = int64(dest[0].(float32))
case string:
if dest[0].(string) == "NULL" {
return 0, nil
}
r.lastInsertId, err = strconv.ParseInt(dest[0].(string), 10, 64)
return r.lastInsertId, err
default:
return 0, errors.New("Unknow lastInsertId type")
}
}
return r.lastInsertId, nil
}
func (r *Result) RowsAffected() (int64, error) {
return r.rowCount, nil
}