Hi Raaf,

AFAIK,

You might use Connection and Statement class for this purpose, try
something like this

    Connection Con = new Connection();
    Statement Stmt = Con.createStatement();
    ResultSet R = Stmt.executeQuery('SELECT ITEMID FROM INVENTTABLE');

    while ( R.next() )
    {
        print R.getString(1);
    }

CMIIW,

Arief Darmawan

>
>
> Hi,
>
> Is there any way to make a QueryRun object move through a direct SQL
> query? Rather than creating QueryBuildRanges and such, can I





Yahoo! Groups Links

Reply via email to