예제 #1
0
파일: pg.go 프로젝트: oibore/github-Traning
func NFields(res unsafe.Pointer) int {
	return int(C.PgNFields(res))
}
예제 #2
0
파일: pg.go 프로젝트: runderwood/go-pg
func NFields(res *PgResults) int {
	return int(C.PgNFields(res.result))
}