Home | History | Annotate | Download | only in _sqlite

Lines Matching refs:intval

309     PY_LONG_LONG intval;

368 intval = sqlite3_column_int64(self->statement->st, i);
369 if (intval < INT32_MIN || intval > INT32_MAX) {
370 converted = PyLong_FromLongLong(intval);
372 converted = PyInt_FromLong((long)intval);