Updates the given table

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

Syntax

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

Parameters

root
Type: System..::..String
the root element the xml file will have
recordtag
Type: System..::..String
the xml element that will represent the record
username
Type: System..::..String
name of user that table belongs to
pass
Type: System..::..String
password of user
dbname
Type: System..::..String
name of database that table belongs to
tablename
Type: System..::..String
name of the table
rows
Type: System.Collections.Generic..::..List<(Of <(<'array<Object>[]()[][]>)>)>
Rows to addes in table

Implements

IWhiteTigerService..::..UpdateTable(String, String, String, String, String, String, List<(Of <<'(array<Object>[]()[][]>)>>))

See Also