I am newbie in the world of web application. I need ur suggestion.
I am using oracle 9 in Aix platform. I have several sql queries that need to run periodically. I am planning to make web based application where in backend those query will be run and query result will show in my desktop PC. Query result need to refresh
after 10 minutes.
Please suggest how can do this in the simplest way?
None
0 Points
1 Post
real time web application_backend sql
Oct 19, 2010 09:28 AM|thepurple|LINK
Hello gentlmen,
I am newbie in the world of web application. I need ur suggestion.
I am using oracle 9 in Aix platform. I have several sql queries that need to run periodically. I am planning to make web based application where in backend those query will be run and query result will show in my desktop PC. Query result need to refresh after 10 minutes.
Please suggest how can do this in the simplest way?
Regards,
Purple
Participant
1043 Points
295 Posts
Re: real time web application_backend sql
Oct 26, 2010 02:51 AM|nomercy007|LINK
You need to bind your controls with query result in the page_load event,
to auto-refresh the page put in the header this line:
<meta http-equiv="refresh" content="600" />
the concept is the same regardless of the database you are using
Regards,