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
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

