(self, pos: c_int)
| 3219 | } |
| 3220 | |
| 3221 | fn column_name(self, pos: c_int) -> *const libc::c_char { |
| 3222 | unsafe { sqlite3_column_name(self.st, pos) } |
| 3223 | } |
| 3224 | |
| 3225 | fn columns_name(self, detect_types: i32, vm: &VirtualMachine) -> PyResult<Vec<PyStrRef>> { |
| 3226 | let count = self.column_count(); |
no outgoing calls
no test coverage detected