Type:
System.Data.IDbCommand The database command that will be initialized to execute the query.
Initializes a
System.Data.IDbCommand object to insert a record into the 'External Store'.
Syntax
protected abstract void InitializeInsertCommand(
DbCommand command,
string ,
string ,
string ,
DateTime ,
Nullable<DateTime>
)
'Declaration
Protected MustOverride Sub InitializeInsertCommand( _
ByVal command As DbCommand, _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByVal As Date, _
ByVal As Nullable(Of Date) _
)
'Usage
Dim instance As ExternalStoreDBDataAccessAgent
Dim command As DbCommand
Dim sopInstanceUid As String
Dim externalStoreGuid As String
Dim storeToken As String
Dim externalStoreDate As Date
Dim expireDate As Nullable(Of Date)
instance.InitializeInsertCommand(command, sopInstanceUid, externalStoreGuid, storeToken, externalStoreDate, expireDate)
protected:
abstract void InitializeInsertCommand(
DbCommand^ command,
String^ ,
String^ ,
String^ ,
DateTime ,
Nullable<DateTime>
)
Parameters
- command
- Type: System.Data.IDbCommand The database command that will be initialized to execute the query.
- sopInstanceUid
- The SOP Instance UID that identifies the instance.
- externalStoreGuid
- The 'External Store' unique identifier.
- storeToken
- The store token that corresponds to the instance
- externalStoreDate
- The 'External Store' date.
- expireDate
- The date that the instance will expire (i.e. be removed) from the 'Local Store'.
Requirements
See Also