本文整理汇总了Golang中github.com/ziutek/mymysql/mysql.Row.ForceInt64方法的典型用法代码示例。如果您正苦于以下问题:Golang Row.ForceInt64方法的具体用法?Golang Row.ForceInt64怎么用?Golang Row.ForceInt64使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/ziutek/mymysql/mysql.Row
的用法示例。
在下文中一共展示了Row.ForceInt64方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: fillStruct
func fillStruct(row mysql.Row, sample reflect.Value, rowIndex int) {
rowSize := len(row)
// 遍历输入的结构体, 将每个类型的值缓冲地址存到scanparam中
for i := 0; i < sample.NumField(); i++ {
v := sample.Field(i)
if i >= rowSize {
log.Printf("out of row size, %d, rowsize: %d", i, rowSize)
continue
}
//log.Println(i, rowIndex, row.Str(rowIndex))
switch v.Kind() {
case reflect.Int32, reflect.Uint32, reflect.Int64:
v.SetInt(row.ForceInt64(rowIndex))
case reflect.String:
v.SetString(row.Str(rowIndex))
case reflect.Struct:
fillStruct(row, v, rowIndex)
default:
log.Printf("dbfw.makeScanParam unsupport type: %s", v.Type())
}
rowIndex++
}
}