Package android.database.sqlite
Class SQLiteStatementInfo
- java.lang.Object
-
- android.database.sqlite.SQLiteStatementInfo
-
public final class SQLiteStatementInfo extends Object
Describes a SQLite statement.
-
-
Field Summary
Fields Modifier and Type Field Description String[]columnNamesThe names of all columns in the result set of the statement.intnumParametersThe number of parameters that the statement has.booleanreadOnlyTrue if the statement is read-only.
-
Constructor Summary
Constructors Constructor Description SQLiteStatementInfo()
-
-
-
Field Detail
-
numParameters
public int numParameters
The number of parameters that the statement has.
-
columnNames
public String[] columnNames
The names of all columns in the result set of the statement.
-
readOnly
public boolean readOnly
True if the statement is read-only.
-
-