create a new table with given,root,record tag ,in the given database of the given user

Namespace: White_Tiger
Assembly: White Tiger (in White Tiger.dll) Version: 0.1.3.5 (0.1.3.5)

Syntax

C#
public void CreateTable(
	string root,
	string recordtag,
	string username,
	string pass,
	string dbname,
	string tablename,
	string[] TableCells
)
Visual Basic
Public Sub CreateTable ( 
	root As String,
	recordtag As String,
	username As String,
	pass As String,
	dbname As String,
	tablename As String,
	TableCells As String()
)
Visual C++
public:
virtual void CreateTable(
	String^ root, 
	String^ recordtag, 
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ tablename, 
	array<String^>^ TableCells
) sealed

Parameters

root
Type: System..::..String
the root element that xml file will have
recordtag
Type: System..::..String
main child element that will contain the cell's of the table as children
username
Type: System..::..String
name of the user that table belongs
pass
Type: System..::..String
the password of the user
dbname
Type: System..::..String
name of the database
tablename
Type: System..::..String
table's name
TableCells
Type: array<System..::..String>[]()[][]
list of cells

Implements

IWhiteTigerService..::..CreateTable(String, String, String, String, String, String, array<String>[]()[][])

See Also