Winn.ws

Database Class

The latest version 1.1.2 of the database class is now available for download! Check out the project page for info on how to use and download this class.

posted in: Development 10.19.08

ASP db class

In developing a new asp forum for The Frashness I have come up with a ASP class. Just like the db_class for PHP this can be used to connect to a MySQL database and you can call the following methods; Update, Insert, and Delete.
[asp]
Function insert_db(tableNa, theSQL)
Set add = Server.CreateObject(“ADODB.Recordset”)
SQLinsert = “INSERT INTO ” & tableNa & ” SET ” & theSQL & “”
add.Open SQLinsert, objCon
End Function
[/asp]
Download the ASP DB Class

posted in: Uncategorized 11.27.07