Search the table for the given value in gthe specified cell

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

Syntax

C#
public string Find(
	string username,
	string pass,
	string dbname,
	string tablename,
	string cell,
	string value
)
Visual Basic
Public Function Find ( 
	username As String,
	pass As String,
	dbname As String,
	tablename As String,
	cell As String,
	value As String
) As String
Visual C++
public:
virtual String^ Find(
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ tablename, 
	String^ cell, 
	String^ value
) sealed

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
tablename
Type: System..::..String
name of table
cell
Type: System..::..String
cell that contains the value we search for
value
Type: System..::..String
value to look for

Return Value

Type: String
the rows of the table containing the value we look for

Implements

IWhiteTigerService..::..Find(String, String, String, String, String, String)

See Also