(self, pos: c_int)
| 3215 | } |
| 3216 | |
| 3217 | fn column_bytes(self, pos: c_int) -> c_int { |
| 3218 | unsafe { sqlite3_column_bytes(self.st, pos) } |
| 3219 | } |
| 3220 | |
| 3221 | fn column_name(self, pos: c_int) -> *const libc::c_char { |
| 3222 | unsafe { sqlite3_column_name(self.st, pos) } |