Database
wdd-3.asc
Associated article: LiveWire Web-to-Database Solutions, Part 2
Tags: Database
Source code accompanying the second installment of a two-part column by William Stanek in which he uses Netscape's LiveWire to build a web-based database management application. This issue, William focuses on the dynamic query engine.
_Web Database Column_
by William Robert Stanek
Example 1:
database.connect(client.dbtype,
client.server,
client.id,
client.password,
client.database);
if(!database.connected()) redirect("connect.html");
Example 2:
client.query = "SELECT " + request.findWhat +
" FROM " + request....


