DataPA Enterprise Dashboard Controls API Reference
Creates a truly independant clone of a recordset
Namespace: DataPAClientConfigAssembly: DataPAClientConfig (in DataPAClientConfig.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax
C# |
---|
public static Recordset TrueClone(
Recordset rsSource,
string sUniqueField = "",
bool CopyData = true
) |
Visual Basic |
---|
Public Shared Function TrueClone (
rsSource As Recordset,
Optional sUniqueField As String = "",
Optional CopyData As Boolean = true
) As Recordset |
Visual C++ |
---|
public:
static Recordset^ TrueClone(
Recordset^ rsSource,
String^ sUniqueField = L"",
bool CopyData = true
) |
Parameters
- rsSource
- Type: Recordset
The source recordset to copy from.
- sUniqueField (Optional)
- Type: System..::..String
A particular field to use as a unique key.
- CopyData (Optional)
- Type: System..::..Boolean
True if you want data copied in addition to the structure.
Return Value
Type:
RecordsetA true clone of the source recordset
Remarks
See Also