HomeSort by relevance Sort by last modified time
    Searched full:savepoint (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/third_party/sqlite/src/test/
savepoint.test 12 # $Id: savepoint.test,v 1.13 2009/07/18 08:30:45 danielk1977 Exp $
20 # The following tests - savepoint-1.* - test that the SAVEPOINT, RELEASE
24 do_test savepoint-1.1 {
27 SAVEPOINT sp1;
31 do_test savepoint-1.2 {
33 SAVEPOINT sp1;
37 do_test savepoint-1.3 {
38 execsql { SAVEPOINT sp1 }
42 do_test savepoint-1.4.1
    [all...]
savepoint2.test 79 # transaction. In all cases open savepoint "one", which may or may
80 # not be a transaction savepoint, depending on whether or not a real
86 execsql "SAVEPOINT one"
89 # Execute some SQL on the database. Then rollback to savepoint "one".
99 # Execute some SQL. Then open savepoint "two". Savepoint "two" is therefore
100 # nested in savepoint "one".
105 execsql "SAVEPOINT two"
108 # More SQL changes. The rollback to savepoint "two". Check that the
109 # signature is as it was when savepoint "two" was opened
    [all...]
savepoint5.test 12 # Verify that a SAVEPOINT on a new, empty database followed by a
13 # ROLLBACK TO that savepoint starts over again with another new
23 SAVEPOINT sp1;
savepoint3.test 23 SAVEPOINT one;
25 SAVEPOINT two;
53 SAVEPOINT one;
55 SAVEPOINT two;
69 SAVEPOINT one;
74 SAVEPOINT one;
79 # The following test does a really big savepoint rollback. One involving
101 # SAVEPOINT abc;
108 # Cause a specific malloc in savepoint rollback code to fail.
129 SAVEPOINT abc
    [all...]
savepoint6.test 36 # ::lSavepoint is a list containing one entry for each active savepoint. The
37 # first entry in the list corresponds to the most recently opened savepoint.
40 # 1. The savepoint name.
43 # start of the savepoint. The keys of the array are the x values. The
62 # savepoint NAME
69 proc savepoint {zName} {
70 catch { sql "SAVEPOINT $zName" }
183 set cmds {savepoint savepoint savepoint savepoint release rollback
    [all...]
savepoint4.test 62 SAVEPOINT one;
64 SAVEPOINT two;
117 SAVEPOINT one;
121 SAVEPOINT two;
123 SAVEPOINT three;
125 SAVEPOINT four;
129 SAVEPOINT three;
131 SAVEPOINT four;
pagerfault2.test 64 SAVEPOINT abc;
89 SAVEPOINT abc;
tkt-d11f09d36e.test 51 SAVEPOINT tr;
keyword1.test 76 savepoint
pagerfault.test 333 # SAVEPOINT one;
335 # SAVEPOINT three;
337 # SAVEPOINT four;
433 # This test case is specially designed so that during a savepoint
460 SAVEPOINT abc;
509 # when a SAVEPOINT command is executed outside of any other savepoint
539 SAVEPOINT trans;
925 SAVEPOINT one;
927 SAVEPOINT two
    [all...]
insert3.test 177 # While developing tests for a different feature (savepoint) the following
pager2.test 105 execsql "SAVEPOINT sp_$k"
table.test 319 CREATE TABLE savepoint(release);
320 INSERT INTO savepoint(release) VALUES(10);
321 UPDATE savepoint SET release = 5;
322 SELECT release FROM savepoint;
e_fkey.test     [all...]
filefmt.test 185 SAVEPOINT a;
  /libcore/luni/src/main/java/java/sql/
Savepoint.java 21 * A savepoint is an instant during the current transaction that can be utilized
23 * particular savepoint means that all changes that occurred after that
24 * savepoint are undone.
26 public interface Savepoint {
29 * Returns the constructed ID for this savepoint.
31 * @return the ID for this savepoint.
38 * Returns the name for this savepoint.
40 * @return the name of this savepoint.
Connection.java 605 * Releases the specified {@code savepoint} from the present transaction. Once removed,
606 * the {@code Savepoint} is considered invalid and should not be referenced
609 * @param savepoint
613 * {@code savepoint} is considered not valid in this
616 public void releaseSavepoint(Savepoint savepoint) throws SQLException;
630 * Undoes all changes made after the supplied {@code Savepoint} object was
633 * @param savepoint
634 * the Savepoint to roll back to
638 public void rollback(Savepoint savepoint) throws SQLException
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 32 import java.sql.Savepoint;
153 public void releaseSavepoint(Savepoint savepoint) throws SQLException {
159 public void rollback(Savepoint savepoint) throws SQLException {
174 public Savepoint setSavepoint() throws SQLException {
178 public Savepoint setSavepoint(String name) throws SQLException {
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 27 import java.sql.Savepoint;
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 405 public Savepoint setSavepoint() throws SQLException {
409 public Savepoint setSavepoint(String name) throws SQLException {
413 public void rollback(Savepoint x) throws SQLException {
417 public void releaseSavepoint(Savepoint x) throws SQLException {
  /external/llvm/include/llvm/CodeGen/
FastISel.h 151 struct SavePoint {
158 SavePoint enterLocalValueArea();
161 void leaveLocalValueArea(SavePoint Old);
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
oracle11.php 403 'SAVEPOINT',
oracle8.php 339 'SAVEPOINT',
  /external/clang/lib/CodeGen/
CGCleanup.h 527 assert(sp.isValid() && "finding invalid savepoint");
528 assert(sp.Size <= stable_begin().Size && "finding savepoint after pop");
  /external/chromium_org/third_party/sqlite/src/src/
pager.c 433 ** savepoint and statement transaction in the system. All such structures
437 ** When a savepoint is created, the PagerSavepoint.iHdrOffset field is
439 ** the savepoint is active, then iHdrOffset is set to the byte offset
441 ** journal before the journal-header. This is required during savepoint
448 Bitvec *pInSavepoint; /* Set of pages in this savepoint */
452 u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */
530 ** comes up during savepoint rollback that requires the pcache module
    [all...]

Completed in 1234 milliseconds

1 2 3