SiMX Help‎ > ‎The Target Platform‎ > ‎Objects‎ > ‎DB Object‎ > ‎

DB.Create


Platform Objects


Description

This will create a new database table.


Syntax


Function Create


Parameters


none


Return value


none


Example

Sample code

DB.Create() ' see an output data object setup to learn how to initialize the object
DB.TransactionStart() 
For I = 1 To 100 
 DB.AppendStart()
 DB.SetFieldValue "Field1", I
 DB.AppnedFinish()
Next
DB.TransactionFinish()
End If


See also

Platform Objects and Methods
DB.sort
DB.AppendFinish