An indooGrid Documented Class Library

dataAccess.multiplyRecords Method 

This function is primary used by SQL developers.

[Visual Basic]
Public Sub multiplyRecords( _
   ByVal Int32 As Integer, _
   ByVal String As String, _
   ByVal String As String _
)
[C#]
public void multiplyRecords(
   Int32 recordCount,
   String tableName,
   String fieldList
);

Parameters

recordCount
Multiply in specified table records by 2 until at least specified recordCount is reached.
tableName
Multiply records in table.
fieldList

Remarks

Developers occasionally need millions or more records in specified table for testing with real data and this template contains information for multiplying records. Records can be multiplied using procedure multiplyRecords in dataAccess object. Multiply is executed using sql queries and becouse of this is much faster then other methods.

See Also

dataAccess Class | Indoo.Data Namespace