HomeSort by relevance Sort by last modified time
    Searched full:database (Results 126 - 150 of 2668) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CrossProcessCursorWrapper.java 19 import android.database.CrossProcessCursor;
20 import android.database.Cursor;
21 import android.database.CursorWindow;
22 import android.database.CursorWrapper;
  /libcore/luni/src/main/java/java/sql/
CallableStatement.java 68 * if a database error occurs.
80 * if there is a problem accessing the database.
95 * if a database error occurs.
113 * if a database error occurs.
131 * if a database error occurs.
146 * if a database error occurs.
160 * if a database error occurs.
173 * if a database error occurs.
186 * if a database error occurs.
200 * if a database error occurs
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CharArrayBufferTest.java 16 package android.database.cts;
23 import android.database.CharArrayBuffer;
26 @TestTargetClass(android.database.CharArrayBuffer.class)
DataSetObserverTest.java 17 package android.database.cts;
19 import android.database.DataSetObserver;
26 @TestTargetClass(android.database.DataSetObserver.class)
SQLExceptionTest.java 17 package android.database.cts;
19 import android.database.SQLException;
26 @TestTargetClass(android.database.SQLException.class)
StaleDataExceptionTest.java 17 package android.database.cts;
19 import android.database.StaleDataException;
26 @TestTargetClass(android.database.StaleDataException.class)
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteAbortExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteAbortException;
26 @TestTargetClass(android.database.sqlite.SQLiteAbortException.class)
SQLiteConstraintExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteConstraintException;
26 @TestTargetClass(android.database.sqlite.SQLiteConstraintException.class)
SQLiteDatabaseCorruptExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDatabaseCorruptException;
26 @TestTargetClass(android.database.sqlite.SQLiteDatabaseCorruptException.class)
SQLiteDiskIOExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDiskIOException;
26 @TestTargetClass(android.database.sqlite.SQLiteDiskIOException.class)
SQLiteDoneExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteDoneException;
26 @TestTargetClass(android.database.sqlite.SQLiteDoneException.class)
SQLiteExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteException;
26 @TestTargetClass(android.database.sqlite.SQLiteException.class)
SQLiteFullExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteFullException;
26 @TestTargetClass(android.database.sqlite.SQLiteFullException.class)
SQLiteMisuseExceptionTest.java 17 package android.database.sqlite.cts;
19 import android.database.sqlite.SQLiteMisuseException;
26 @TestTargetClass(android.database.sqlite.SQLiteMisuseException.class)
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_database.h 25 // Creates an empty in-memory database.
28 // Initializes the database by directly slurping the data from the given
39 // Initializes the database connection, this is the shared code between
  /external/chromium/chrome/browser/ui/views/
database_info_view.h 20 // Responsible for displaying a tabular grid of Database information.
26 // Update the display from the specified Database info.
34 // Enables or disables the database property text fields.
  /external/chromium/chrome/browser/webdata/
web_database.h 22 // This class manages a SQLite database that stores various web page meta data.
28 // Initialize the database given a name. The name defines where the SQLite
46 // Used by |Init()| to migration database schema from older versions to
  /external/collada/include/dae/
daeIOPluginCommon.h 38 // Database setup
39 virtual void setDatabase(daeDatabase* database);
45 daeDatabase* database; member in class:daeIOPluginCommon
  /external/llvm/utils/
plotNLT.pl 7 # database information
14 # make connection to database
52 # disconnect from database

Completed in 308 milliseconds

1 2 3 4 56 7 8 91011>>