|
Arla:
For quick data access, like returning 1 or so rows, I would recommend the DataReader. Anything bigger, where you need perhaps more persistent data to manipulate on the client, I would use the DataSet
Kevin Parkinson
__________________
public class MySignature extends Post implements JavaSyntax throws NuttinHoney{
MySignature()
{
Salutation();
Name();
}
public string Salutation()
{
Screen.printLn( "Sincerely,\n" );
}
public string Name()
{
Screen.printLn( "Kevin Parkinson" );
}
}
|