ISQLiteConnectionExecuteQuery Method |
Method to execute a SQL command that returns a list of rows.
Namespace: Oracle.Cloud.Mobile.SynchronizationAssembly: Oracle.Cloud.Mobile.Synchronization.PCL (in Oracle.Cloud.Mobile.Synchronization.PCL.dll) Version: 16.1.3.1 (16.1.3.1)
SyntaxIEnumerable<ISQLiteRow> ExecuteQuery(
string query,
params Object[] args
)
Function ExecuteQuery (
query As String,
ParamArray args As Object()
) As IEnumerable(Of ISQLiteRow)
IEnumerable<ISQLiteRow^>^ ExecuteQuery(
String^ query,
... array<Object^>^ args
)
abstract ExecuteQuery :
query : string *
args : Object[] -> IEnumerable<ISQLiteRow>
Parameters
- query
- Type: SystemString
The query to execute. - args
- Type: SystemObject
Parameters for the query.
Return Value
Type:
IEnumerableISQLiteRowAn iterator over the result set of rows.
See Also