Home
last modified time | relevance | path

Searched refs:autocommit (Results 1 – 12 of 12) 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.py737 db = tko_db.db(autocommit=False, host=options.db_host,
/external/autotest/scheduler/
Dscheduler_lib.py64 def __init__(self, readonly=True, autocommit=True): argument
73 if autocommit:
Drdb_testing_utils.py313 _db_manager = scheduler_lib.ConnectionManager(autocommit=False)
361 connection_manager = scheduler_lib.ConnectionManager(autocommit=False)
Dmonitor_db_unittest.py112 connection_manager = scheduler_lib.ConnectionManager(autocommit=False)
/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.rst284 Get or set the current default isolation level. :const:`None` for autocommit mode or
1009 The underlying ``sqlite3`` library operates in ``autocommit`` mode by default,
1012 ``autocommit`` mode means that statements that modify the database take effect
1013 immediately. A ``BEGIN`` or ``SAVEPOINT`` statement disables ``autocommit``
1015 outermost transaction, turns ``autocommit`` mode back on.
1030 ``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``.