Board index » delphi » CGI APP HELP!

CGI APP HELP!

hello fellow delphines,

I'm currently writing a CGI app that seems to allways return 0 for
recordcounts even though I proved data is there. Also on one html page I set
a tag called #name and if I hardcode a string assignment to it, it will
work; however if I assign it a value from  tquery like
 name := CustomerCustomer_Name.Value it shows nothing.. Again I see the data
if I use
a tdatasetproducer.

Jim

 

Re:CGI APP HELP!


What database are you using?  I know of several, (Oracle, SQL Server 6.X)
that either always return a recordcount of 0(SQLServer) or require that you
do a Dataset.Last; Dataset.First; then you can get an accurate recordcount
(Oracle,and  DB2).
HTH
Mike

Quote
Jim Varrati wrote in message ...
>hello fellow delphines,

>I'm currently writing a CGI app that seems to allways return 0 for
>recordcounts even though I proved data is there. Also on one html page I
set
>a tag called #name and if I hardcode a string assignment to it, it will
>work; however if I assign it a value from  tquery like
> name := CustomerCustomer_Name.Value it shows nothing.. Again I see the
data
>if I use
>a tdatasetproducer.

>Jim

Other Threads