(self, pos: c_int)
| 3203 | } |
| 3204 | |
| 3205 | fn column_blob(self, pos: c_int) -> *const c_void { |
| 3206 | unsafe { sqlite3_column_blob(self.st, pos) } |
| 3207 | } |
| 3208 | |
| 3209 | fn column_text(self, pos: c_int) -> *const u8 { |
| 3210 | unsafe { sqlite3_column_text(self.st, pos) } |