- patientInsertCommand
- The DbCommand to be initialized.
- patient
- The DicomInformation.PatientsRow object containing the values that will be inserted into the database.
| Visual Basic (Declaration) | |
|---|---|
Protected Overridable MustOverride Sub InitializePatientInsertCommand( _ ByVal patientInsertCommand As DbCommand, _ ByVal patient As DicomInformation.PatientsRow _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected virtual abstract void InitializePatientInsertCommand( DbCommand patientInsertCommand, DicomInformation.PatientsRow patient ) | |
| C++/CLI | |
|---|---|
protected: virtual abstract void InitializePatientInsertCommand( DbCommand patientInsertCommand, DicomInformation.PatientsRow^ patient ) | |
Parameters
- patientInsertCommand
- The DbCommand to be initialized.
- patient
- The DicomInformation.PatientsRow object containing the values that will be inserted into the database.
Override this method to provide the database specific behavior for insertion.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code