------------
//Stud is Table(DS)
//qr is object for QueryRun class
------------
public boolean fetch()
{
boolean ret;
QueryRun qr;
;
qr = new QueryRun(this.query());//
// following statement is executes depends on count of records in table
while(qr.next())
{
Stud = qr.get(tablenum(Stud));// getting table num
while select Stud
{
this.send(Stud);
}
}
//ret = super();
return true;
}
-------
//Stud is Table(DS)
//qr is object for QueryRun class
------------
public boolean fetch()
{
boolean ret;
QueryRun qr;
;
qr = new QueryRun(this.query());//
// following statement is executes depends on count of records in table
while(qr.next())
{
Stud = qr.get(tablenum(Stud));// getting table num
while select Stud
{
this.send(Stud);
}
}
//ret = super();
return true;
}
-------
No comments:
Post a Comment
Leave your comments and solutins