The ResultSet Object

(since Version 0.0.1)
ResultSet -- This Object represents the Retult of a SELECT Query

Description:

After you execute a SELECT Statement with a $myDatabaseInstace->executeQuery() call, this
function returns a ResultSet Object. You can navigate trough this Object and read all
the Results of the Query.

Example:

$db = new Database("MyDatabase");

$resultSet = $db->executeQuery("SELECT nr, name, prename FROM person WHERE nr=1");
while($resultSet->next()) {
	echo "<br>" . $resultSet->getCurrentValueByName("nr") . ": " . $resultSet->getCurrentValueByName("name") . "<br>";
}