Searched defs:outStatementInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteSession.java556 * prior to execution of the statement. If the {@code outStatementInfo} argument
570 * @param outStatementInfo The {@link SQLiteStatementInfo} object to populate
577 SQLiteStatementInfo outStatementInfo) {
588 mConnection.prepare(sql, outStatementInfo); // might throw
576 prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal, SQLiteStatementInfo outStatementInfo) argument
H A DSQLiteConnection.java471 * prior to execution of the statement. If the {@code outStatementInfo} argument
486 * @param outStatementInfo The {@link SQLiteStatementInfo} object to populate
491 public void prepare(String sql, SQLiteStatementInfo outStatementInfo) { argument
500 if (outStatementInfo != null) {
501 outStatementInfo.numParameters = statement.mNumParameters;
502 outStatementInfo.readOnly = statement.mReadOnly;
507 outStatementInfo.columnNames = EMPTY_STRING_ARRAY;
509 outStatementInfo.columnNames = new String[columnCount];
511 outStatementInfo.columnNames[i] = nativeGetColumnName(

Completed in 535 milliseconds