# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT class Cache(object): def __init__(self, *args, **kwargs): pass def display(self): """ For debugging only. """ pass def get(self): """ Gets an entry from the cache or calls the factory function to produce one. """ pass class Connection(object): """ SQLite database connection object. """ DataError = None DatabaseError = None Error = None IntegrityError = None InterfaceError = None InternalError = None NotSupportedError = None OperationalError = None ProgrammingError = None Warning = None def __init__(self, *args, **kwargs): pass def close(self): """ Closes the connection. """ pass def commit(self): """ Commit the current transaction. """ pass def create_aggregate(self): """ Creates a new aggregate. Non-standard. """ pass def create_collation(self): """ Creates a collation function. Non-standard. """ pass def create_function(self): """ Creates a new function. Non-standard. """ pass def cursor(self): """ Return a cursor for the connection. """ pass def execute(self): """ Executes a SQL statement. Non-standard. """ pass def executemany(self): """ Repeatedly executes a SQL statement. Non-standard. """ pass def executescript(self): """ Executes a multiple SQL statements at once. Non-standard. """ pass in_transaction = property(None, None, None, ) def interrupt(self): """ Abort any pending database operation. Non-standard. """ pass isolation_level = property(None, None, None, ) def iterdump(self): """ Returns iterator to the dump of the database in an SQL text format. Non-standard. """ pass def rollback(self): """ Roll back the current transaction. """ pass row_factory = None def set_authorizer(self): """ Sets authorizer callback. Non-standard. """ pass def set_progress_handler(self): """ Sets progress handler callback. Non-standard. """ pass def set_trace_callback(self, arg0): """ Sets a trace callback called for each SQL statement (passed as unicode). Non-standard. """ pass text_factory = None total_changes = property(None, None, None, ) class Cursor(object): """ SQLite database cursor class. """ def __init__(self, *args, **kwargs): pass arraysize = None def close(self): """ Closes the cursor. """ pass connection = None description = None def execute(self): """ Executes a SQL statement. """ pass def executemany(self): """ Repeatedly executes a SQL statement. """ pass def executescript(self): """ Executes a multiple SQL statements at once. Non-standard. """ pass def fetchall(self): """ Fetches all rows from the resultset. """ pass def fetchmany(self): """ Fetches several rows from the resultset. """ pass def fetchone(self): """ Fetches one row from the resultset. """ pass lastrowid = None row_factory = None rowcount = None def setinputsizes(self): """ Required by DB-API. Does nothing in pysqlite. """ pass def setoutputsize(self): """ Required by DB-API. Does nothing in pysqlite. """ pass class DataError(DatabaseError): pass class DatabaseError(Error): pass class Error(Exception): pass class IntegrityError(DatabaseError): pass class InterfaceError(Error): pass class InternalError(DatabaseError): pass class NotSupportedError(DatabaseError): pass class OperationalError(DatabaseError): pass class OptimizedUnicode(object): """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'. """ def capitalize(self): """ Return a capitalized version of the string. More specifically, make the first character have upper case and the rest lower case. """ pass def casefold(self): """ Return a version of the string suitable for caseless comparisons. """ pass def center(self, width, fillchar=' '): """ Return a centered string of length width. Padding is done using the specified fill character (default is a space). """ pass def count(self, sub, start=None, end=None): """ S.count(sub[, start[, end]]) -> int Return the number of non-overlapping occurrences of substring sub in string S[start:end]. Optional arguments start and end are interpreted as in slice notation. """ return 1 def encode(self, encoding='utf-8', errors='strict'): """ Encode the string using the codec registered for encoding. encoding The encoding in which to encode the string. errors The error handling scheme to use for encoding errors. The default is 'strict' meaning that encoding errors raise a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and 'xmlcharrefreplace' as well as any other name registered with codecs.register_error that can handle UnicodeEncodeErrors. """ pass def endswith(self, suffix, start=None, end=None): """ S.endswith(suffix[, start[, end]]) -> bool Return True if S ends with the specified suffix, False otherwise. With optional start, test S beginning at that position. With optional end, stop comparing S at that position. suffix can also be a tuple of strings to try. """ return None def expandtabs(self, tabsize=8): """ Return a copy where all tab characters are expanded using spaces. If tabsize is not given, a tab size of 8 characters is assumed. """ pass def find(self, sub, start=None, end=None): """ S.find(sub[, start[, end]]) -> int Return the lowest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation. Return -1 on failure. """ return 1 def format(self, arg0, arg1): """ S.format(*args, **kwargs) -> str Return a formatted version of S, using substitutions from args and kwargs. The substitutions are identified by braces ('{' and '}'). """ return "" def format_map(self, mapping): """ S.format_map(mapping) -> str Return a formatted version of S, using substitutions from mapping. The substitutions are identified by braces ('{' and '}'). """ return "" def index(self, sub, start=None, end=None): """ S.index(sub[, start[, end]]) -> int Return the lowest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation. Raises ValueError when the substring is not found. """ return 1 def isalnum(self): """ Return True if the string is an alpha-numeric string, False otherwise. A string is alpha-numeric if all characters in the string are alpha-numeric and there is at least one character in the string. """ pass def isalpha(self): """ Return True if the string is an alphabetic string, False otherwise. A string is alphabetic if all characters in the string are alphabetic and there is at least one character in the string. """ pass def isascii(self): """ Return True if all characters in the string are ASCII, False otherwise. ASCII characters have code points in the range U+0000-U+007F. Empty string is ASCII too. """ pass def isdecimal(self): """ Return True if the string is a decimal string, False otherwise. A string is a decimal string if all characters in the string are decimal and there is at least one character in the string. """ pass def isdigit(self): """ Return True if the string is a digit string, False otherwise. A string is a digit string if all characters in the string are digits and there is at least one character in the string. """ pass def isidentifier(self): """ Return True if the string is a valid Python identifier, False otherwise. Use keyword.iskeyword() to test for reserved identifiers such as "def" and "class". """ pass def islower(self): """ Return True if the string is a lowercase string, False otherwise. A string is lowercase if all cased characters in the string are lowercase and there is at least one cased character in the string. """ pass def isnumeric(self): """ Return True if the string is a numeric string, False otherwise. A string is numeric if all characters in the string are numeric and there is at least one character in the string. """ pass def isprintable(self): """ Return True if the string is printable, False otherwise. A string is printable if all of its characters are considered printable in repr() or if it is empty. """ pass def isspace(self): """ Return True if the string is a whitespace string, False otherwise. A string is whitespace if all characters in the string are whitespace and there is at least one character in the string. """ pass def istitle(self): """ Return True if the string is a title-cased string, False otherwise. In a title-cased string, upper- and title-case characters may only follow uncased characters and lowercase characters only cased ones. """ pass def isupper(self): """ Return True if the string is an uppercase string, False otherwise. A string is uppercase if all cased characters in the string are uppercase and there is at least one cased character in the string. """ pass def join(self, iterable): """ Concatenate any number of strings. The string whose method is called is inserted in between each given string. The result is returned as a new string. Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs' """ return None def ljust(self, width, fillchar=' '): """ Return a left-justified string of length width. Padding is done using the specified fill character (default is a space). """ pass def lower(self): """ Return a copy of the string converted to lowercase. """ pass def lstrip(self, chars=None): """ Return a copy of the string with leading whitespace removed. If chars is given and not None, remove characters in chars instead. """ pass def maketrans(self, x, y=None, z=None): """ Return a translation table usable for str.translate(). If there is only one argument, it must be a dictionary mapping Unicode ordinals (integers) or characters to Unicode ordinals, strings or None. Character keys will be then converted to ordinals. If there are two arguments, they must be strings of equal length, and in the resulting dictionary, each character in x will be mapped to the character at the same position in y. If there is a third argument, it must be a string, whose characters will be mapped to None in the result. """ pass def partition(self, sep): """ Partition the string into three parts using the given separator. This will search for the separator in the string. If the separator is found, returns a 3-tuple containing the part before the separator, the separator itself, and the part after it. If the separator is not found, returns a 3-tuple containing the original string and two empty strings. """ pass def replace(self, old, new, count=-1): """ Return a copy with all occurrences of substring old replaced by new. count Maximum number of occurrences to replace. -1 (the default value) means replace all occurrences. If the optional argument count is given, only the first count occurrences are replaced. """ pass def rfind(self, sub, start=None, end=None): """ S.rfind(sub[, start[, end]]) -> int Return the highest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation. Return -1 on failure. """ return 1 def rindex(self, sub, start=None, end=None): """ S.rindex(sub[, start[, end]]) -> int Return the highest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation. Raises ValueError when the substring is not found. """ return 1 def rjust(self, width, fillchar=' '): """ Return a right-justified string of length width. Padding is done using the specified fill character (default is a space). """ pass def rpartition(self, sep): """ Partition the string into three parts using the given separator. This will search for the separator in the string, starting at the end. If the separator is found, returns a 3-tuple containing the part before the separator, the separator itself, and the part after it. If the separator is not found, returns a 3-tuple containing two empty strings and the original string. """ pass def rsplit(self, sep=None, maxsplit=-1): """ Return a list of the words in the string, using sep as the delimiter string. sep The delimiter according which to split the string. None (the default value) means split according to any whitespace, and discard empty strings from the result. maxsplit Maximum number of splits to do. -1 (the default value) means no limit. Splits are done starting at the end of the string and working to the front. """ pass def rstrip(self, chars=None): """ Return a copy of the string with trailing whitespace removed. If chars is given and not None, remove characters in chars instead. """ pass def split(self, sep=None, maxsplit=-1): """ Return a list of the words in the string, using sep as the delimiter string. sep The delimiter according which to split the string. None (the default value) means split according to any whitespace, and discard empty strings from the result. maxsplit Maximum number of splits to do. -1 (the default value) means no limit. """ pass def splitlines(self, keepends=False): """ Return a list of the lines in the string, breaking at line boundaries. Line breaks are not included in the resulting list unless keepends is given and true. """ pass def startswith(self, prefix, start=None, end=None): """ S.startswith(prefix[, start[, end]]) -> bool Return True if S starts with the specified prefix, False otherwise. With optional start, test S beginning at that position. With optional end, stop comparing S at that position. prefix can also be a tuple of strings to try. """ return None def strip(self, chars=None): """ Return a copy of the string with leading and trailing whitespace remove. If chars is given and not None, remove characters in chars instead. """ pass def swapcase(self): """ Convert uppercase characters to lowercase and lowercase characters to uppercase. """ pass def title(self): """ Return a version of the string where each word is titlecased. More specifically, words start with uppercased characters and all remaining cased characters have lower case. """ pass def translate(self, table): """ Replace each character in the string using the given translation table. table Translation table, which must be a mapping of Unicode ordinals to Unicode ordinals, strings, or None. The table must implement lookup/indexing via __getitem__, for instance a dictionary or list. If this operation raises LookupError, the character is left untouched. Characters mapped to None are deleted. """ pass def upper(self): """ Return a copy of the string converted to uppercase. """ pass def zfill(self, width): """ Pad a numeric string with zeros on the left, to fill a field of the given width. The string is never truncated. """ pass PARSE_COLNAMES = 2 PARSE_DECLTYPES = 1 class PrepareProtocol(object): def __init__(self, *args, **kwargs): pass class ProgrammingError(DatabaseError): pass class Row(object): def keys(self): """ Returns the keys of the row. """ pass SQLITE_ALTER_TABLE = 26 SQLITE_ANALYZE = 28 SQLITE_ATTACH = 24 SQLITE_CREATE_INDEX = 1 SQLITE_CREATE_TABLE = 2 SQLITE_CREATE_TEMP_INDEX = 3 SQLITE_CREATE_TEMP_TABLE = 4 SQLITE_CREATE_TEMP_TRIGGER = 5 SQLITE_CREATE_TEMP_VIEW = 6 SQLITE_CREATE_TRIGGER = 7 SQLITE_CREATE_VIEW = 8 SQLITE_CREATE_VTABLE = 29 SQLITE_DELETE = 9 SQLITE_DENY = 1 SQLITE_DETACH = 25 SQLITE_DROP_INDEX = 10 SQLITE_DROP_TABLE = 11 SQLITE_DROP_TEMP_INDEX = 12 SQLITE_DROP_TEMP_TABLE = 13 SQLITE_DROP_TEMP_TRIGGER = 14 SQLITE_DROP_TEMP_VIEW = 15 SQLITE_DROP_TRIGGER = 16 SQLITE_DROP_VIEW = 17 SQLITE_DROP_VTABLE = 30 SQLITE_FUNCTION = 31 SQLITE_IGNORE = 2 SQLITE_INSERT = 18 SQLITE_OK = 0 SQLITE_PRAGMA = 19 SQLITE_READ = 20 SQLITE_REINDEX = 27 SQLITE_SAVEPOINT = 32 SQLITE_SELECT = 21 SQLITE_TRANSACTION = 22 SQLITE_UPDATE = 23 class Statement(object): pass class Warning(Exception): pass __doc__ = None __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-x64/runtime-python3.7/lib/python3.7/lib-dynload/_sqlite3.cpython-37m-x86_64-linux-gnu.so' __loader__ = None __name__ = '_sqlite3' __package__ = '' __spec__ = None def adapt(obj, protocol, alternate): """ adapt(obj, protocol, alternate) -> adapt obj to given protocol. Non-standard. """ return None adapters = {} def complete_statement(sql): """ complete_statement(sql) Checks if a string contains a complete SQL statement. Non-standard. """ pass def connect(database, timeout=None, detect_types=None, isolation_level=None, check_same_thread=None, factory=None, cached_statements=None, uri=None): """ connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri]) Opens a connection to the SQLite database file *database*. You can use ":memory:" to open a database connection to a database that resides in RAM instead of on disk. """ pass converters = {} def enable_callback_tracebacks(flag): """ enable_callback_tracebacks(flag) Enable or disable callback functions throwing errors to stderr. """ pass def enable_shared_cache(do_enable): """ enable_shared_cache(do_enable) Enable or disable shared cache mode for the calling thread. Experimental/Non-standard. """ pass def register_adapter(type, callable): """ register_adapter(type, callable) Registers an adapter with pysqlite's adapter registry. Non-standard. """ pass def register_converter(typename, callable): """ register_converter(typename, callable) Registers a converter with pysqlite. Non-standard. """ pass sqlite_version = '3.6.20' version = '2.6.0'