MCPcopy Index your code
hub / github.com/RustPython/RustPython / column_name

Method column_name

crates/stdlib/src/_sqlite3.rs:3221–3223  ·  view source on GitHub ↗
(self, pos: c_int)

Source from the content-addressed store, hash-verified

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();

Callers 3

build_row_cast_mapMethod · 0.80
nextMethod · 0.80
columns_nameMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected