You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get the field names of a table is neccesary the next functions:
* * *
func (s *Stmt) Columns() int {
return int(C.sqlite3_column_count(s.stmt))
}
func (s *Stmt) ColumnName(column int) (name string) {
cname := C.sqlite3_column_name(s.stmt, C.int(column))
name = C.GoString(cname)
return
* * *
Original issue reported on code.google.com by raul....@sent.com on 2 Dec 2010 at 12:35
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
raul....@sent.com
on 2 Dec 2010 at 12:35The text was updated successfully, but these errors were encountered: