adds the given List of 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 username,
	string pass,
	string dbname,
	string table,
	List<Object[]> vals
)
Visual Basic
Public Sub AddRows ( 
	username As String,
	pass As String,
	dbname As String,
	table As String,
	vals As List(Of Object())
)
Visual C++
public:
void AddRows(
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ table, 
	List<array<Object^>^>^ vals
)

Parameters

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>[]()[][]>)>)>
list of values to add

See Also