Click or drag to resize
ISQLiteConnectionExecuteQuery Method
Method to execute a SQL command that returns a list of rows.

Namespace: Oracle.Cloud.Mobile.Synchronization
Assembly: Oracle.Cloud.Mobile.Synchronization.PCL (in Oracle.Cloud.Mobile.Synchronization.PCL.dll) Version: 16.1.3.1 (16.1.3.1)
Syntax
IEnumerable<ISQLiteRow> ExecuteQuery(
	string query,
	params Object[] args
)

Parameters

query
Type: SystemString
The query to execute.
args
Type: SystemObject
Parameters for the query.

Return Value

Type: IEnumerableISQLiteRow
An iterator over the result set of rows.
See Also