(self, pos: c_int)
| 3199 | } |
| 3200 | |
| 3201 | fn column_double(self, pos: c_int) -> f64 { |
| 3202 | unsafe { sqlite3_column_double(self.st, pos) } |
| 3203 | } |
| 3204 | |
| 3205 | fn column_blob(self, pos: c_int) -> *const c_void { |
| 3206 | unsafe { sqlite3_column_blob(self.st, pos) } |