Re: make Oracle accessable from the web?
From: Xifer <ark_at_im.net>
Date: Tue, 02 Jan 2001 09:10:31 +0000
Message-ID: <3A519B07.D2E1238A_at_im.net>
Date: Tue, 02 Jan 2001 09:10:31 +0000
Message-ID: <3A519B07.D2E1238A_at_im.net>
Mark wrote:
>
> I have an Oracle Database. I need to allow people to run queries on
> the database using a web browser. The web page would allow the user
> to specify a beginning date and an ending date and the query would
> return the data. I have Webdb, but it can not query on columns that
> are of type DATE when the dates you are searching with use hours and
> minutes.
Yes it can. e.g.
[...] WHERE start_date < trunc(sysdate) + 1100/1440 and end_date > trunc(sysdate) + 22/24 ;
RTM Received on Tue Jan 02 2001 - 10:10:31 CET