Home
last modified time | relevance | path

Searched refs:autocommit (Results 1 – 9 of 9) sorted by relevance

/external/autotest/tko/
Ddb.py69 def __init__(self, debug=False, autocommit=True, host=None, argument
72 self.autocommit = autocommit
246 if self.autocommit:
349 if self.autocommit:
373 if self.autocommit:
380 if self.autocommit:
424 commit = self.autocommit
446 commit = self.autocommit
Dparse.py754 db = tko_db.db(autocommit=False, host=options.db_host,
/external/autotest/frontend/
Dsetup_django_environment.py18 connections[name].connection.autocommit(True)
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCConnection.java32 protected boolean autocommit = true; field in JDBCConnection
257 return autocommit; in getAutoCommit()
331 autocommit = ac; in setAutoCommit()
DJDBCStatement.java97 boolean starttrans = !conn.autocommit && !conn.intrans; in executeQuery()
/external/bcc/tools/
Ddbslower_example.txt50 6.645228 25776 0.059 SET autocommit=1
/external/autotest/database/
Ddatabase_connection.py79 self._connection.autocommit(True)
/external/python/cpython3/Doc/library/
Dsqlite3.rst287 Get or set the current default isolation level. :const:`None` for autocommit mode or
1023 The underlying ``sqlite3`` library operates in ``autocommit`` mode by default,
1026 ``autocommit`` mode means that statements that modify the database take effect
1027 immediately. A ``BEGIN`` or ``SAVEPOINT`` statement disables ``autocommit``
1029 outermost transaction, turns ``autocommit`` mode back on.
1044 ``sqlite3`` library operating in ``autocommit`` mode. You can then completely
/external/python/cpython2/Doc/library/
Dsqlite3.rst254 Get or set the current isolation level. :const:`None` for autocommit mode or
871 If you want **autocommit mode**, then set :attr:`isolation_level` to ``None``.