Home | History | Annotate | Download | only in _sqlite

Lines Matching full:converted

299     PyObject* converted;
336 converted = Py_None;
342 converted = PyObject_CallFunction(converter, "O", item);
344 if (!converted) {
354 converted = Py_None;
356 converted = _pysqlite_long_from_int64(sqlite3_column_int64(self->statement->st, i));
358 converted = PyFloat_FromDouble(sqlite3_column_double(self->statement->st, i));
365 converted = pysqlite_unicode_from_string(val_str, nbytes,
368 if (!converted) {
378 converted = PyString_FromStringAndSize(val_str, nbytes);
380 converted = PyObject_CallFunction(self->connection->text_factory, "s#", val_str, nbytes);
393 converted = buffer;
397 if (converted) {
398 PyTuple_SetItem(row, i, converted);