biTracker - A free Administrative Intranet Portal in PL/SQL
I am very pleased to announce a project which is very close to my heart. " The biTracker. " It uses the PL/SQL Web Toolkit for generating HTML pages which can be used by an organization for its internal needs. About Pl/SQL (Oracle) Web Toolkit A programming language now-a-days must be capable of producing web content using HTTP protocol. PL/SQL is no exception, and it does this job in style. Oracle supplies some packages called HTP, HTF etc which can generate HTML content to HTTP stream which can be opened by a browser. The flow of data can be in the following tiers: PL/SQL Procedure or Package (Database Layer) Web Server (Middle-Tier) Browser (Client Side) As Oracle handles the flow of data from Database Layer to Middle Tier to Client side it gives us time to develop feature rich applications using Database Layer. Consider the following example: CREATE PROCEDURE helloworld IS BEGIN HTP.htmlOpen; HTP.print('Hello World'); HTP...