NbDatabaseImplSelectForReader Method |
SELECT を発行する
Namespace: Nec.Nebula.Internal.DatabaseAssembly: Nec.Nebula.Offline (in Nec.Nebula.Offline.dll) Version: 7.0.0.0 (7.0.0.0)
Syntax public SQLiteDataReader SelectForReader(
string table,
string[] projection = null,
string where = null,
Object[] whereArgs = null,
int offset = -1,
int limit = -1
)
Public Function SelectForReader (
table As String,
Optional projection As String() = Nothing,
Optional where As String = Nothing,
Optional whereArgs As Object() = Nothing,
Optional offset As Integer = -1,
Optional limit As Integer = -1
) As SQLiteDataReader
public:
SQLiteDataReader^ SelectForReader(
String^ table,
array<String^>^ projection = nullptr,
String^ where = nullptr,
array<Object^>^ whereArgs = nullptr,
int offset = -1,
int limit = -1
)
member SelectForReader :
table : string *
?projection : string[] *
?where : string *
?whereArgs : Object[] *
?offset : int *
?limit : int
(* Defaults:
let _projection = defaultArg projection null
let _where = defaultArg where null
let _whereArgs = defaultArg whereArgs null
let _offset = defaultArg offset -1
let _limit = defaultArg limit -1
*)
-> SQLiteDataReader
Parameters
- table
- Type: SystemString
テーブル名 - projection (Optional)
- Type: SystemString
Projection - where (Optional)
- Type: SystemString
WHERE - whereArgs (Optional)
- Type: SystemObject
WHERE引数 - offset (Optional)
- Type: SystemInt32
Offset - limit (Optional)
- Type: SystemInt32
Limit
Return Value
Type:
SQLiteDataReaderReader
Exceptions Exception | Condition |
---|
ArgumentNullException | テーブル名がnull |
Version Information Offline
Supported in: 1.0
See Also