[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Efraín

12/1/2005 12:46:00 AM

Hi, is that a way to get the sql sentence of a Report? Thx. in advance
2 Answers

Necmi Göcek

12/1/2005 9:01:00 AM

0

Hi,
In the init method of your report
public void init()
{
QueryBuildDataSource qbds;
;
super();

qbds = this.query().dataSourceNo(1);
box::info(qbds.toString());
}
--
_MIB_


"Efraín" wrote:

> Hi, is that a way to get the sql sentence of a Report? Thx. in advance

Efraín

12/1/2005 5:10:00 PM

0

Yeah, thats what I need, thx a lot.

"Necmi Göcek" wrote:

> Hi,
> In the init method of your report
> public void init()
> {
> QueryBuildDataSource qbds;
> ;
> super();
>
> qbds = this.query().dataSourceNo(1);
> box::info(qbds.toString());
> }
> --
> _MIB_
>
>
> "Efraín" wrote:
>
> > Hi, is that a way to get the sql sentence of a Report? Thx. in advance