Lines Matching refs:colname
174 const char *colname = sqlite3_column_name(self->statement->st, i); in pysqlite_build_row_cast_map() local
175 if (colname == NULL) { in pysqlite_build_row_cast_map()
181 for (pos = colname; *pos != 0; pos++) { in pysqlite_build_row_cast_map()
230 _pysqlite_build_column_name(pysqlite_Cursor *self, const char *colname) in _pysqlite_build_column_name() argument
236 for (pos = colname; *pos; pos++) { in _pysqlite_build_column_name()
238 if ((pos != colname) && (*(pos-1) == ' ')) { in _pysqlite_build_column_name()
244 len = pos - colname; in _pysqlite_build_column_name()
247 len = strlen(colname); in _pysqlite_build_column_name()
249 return PyUnicode_FromStringAndSize(colname, len); in _pysqlite_build_column_name()
268 const char* colname; in _pysqlite_fetch_one_row() local
342 colname = sqlite3_column_name(self->statement->st, i); in _pysqlite_fetch_one_row()
343 if (colname == NULL) { in _pysqlite_fetch_one_row()
348 colname , text); in _pysqlite_fetch_one_row()
574 const char *colname; in _pysqlite_query_execute() local
575 colname = sqlite3_column_name(self->statement->st, i); in _pysqlite_query_execute()
576 if (colname == NULL) { in _pysqlite_query_execute()
580 column_name = _pysqlite_build_column_name(self, colname); in _pysqlite_query_execute()