Database
webrept.txt
Associated article: The Web Report Database Reporting Tool
Tags: Database
Published source code accompanying the article by Laruen Hightower in which she presents "Web Report," a tool that lets you connect users to ODBC-compliant databases, then lets them create ad-hoc queries and reports using the web as the query-building interface. Lauren knits Web Report together by using Active Server Pages, Javascript, and DHTML. Also see WEBREPT.ZIP.
The Web Report Database Reporting Tool
by Laruen Hightower
Listing One
<%
Set DBConnection = Server.CreateObject("ADODB.Connection")
DBConnection.Open ("northwind")
SQL="SELECT name FROM MSysObjects WHERE type=1 AND name
NOT LIKE 'MSys%' ORDER ...


