adds the given values to the table

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

Syntax

C#
public void AddRows(
	string root,
	string recordtag,
	string username,
	string pass,
	string dbname,
	string table,
	List<Object[]> vals,
	bool autoupd
)
Visual Basic
Public Sub AddRows ( 
	root As String,
	recordtag As String,
	username As String,
	pass As String,
	dbname As String,
	table As String,
	vals As List(Of Object()),
	autoupd As Boolean
)
Visual C++
public:
virtual void AddRows(
	String^ root, 
	String^ recordtag, 
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ table, 
	List<array<Object^>^>^ vals, 
	bool autoupd
) sealed

Parameters

root
Type: System..::..String
root element of xml files
recordtag
Type: System..::..String
element that holds the cells
username
Type: System..::..String
user's name table belongs to
pass
Type: System..::..String
password of user
dbname
Type: System..::..String
name of database
table
Type: System..::..String
name of table
vals
Type: System.Collections.Generic..::..List<(Of <(<'array<Object>[]()[][]>)>)>
values to add
autoupd
Type: System..::..Boolean
if true the auto saves the table

Implements

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

See Also