Create a new table

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public bool Create(
	string tableName
)
Visual Basic
Public Function Create ( _
	tableName As String _
) As Boolean
Visual C++
public:
bool Create(
	String^ tableName
)

Parameters

tableName
Type: System..::..String
Table name to Create

Return Value

bool

Remarks

Upon completion WIDatabase.SQLStatement contains SQL command generated by the library.

 

If a table with the same name already exists in the database, the function returns true with LastError set to eDBErrorCodes.TableAlreadyExists

See Also