When we write ASP database programs, we usually use SQL statements, and when we add data and update the data, we usually use the way: INSERT into message (Incept,sender,title,content,sendtime, Flag,issend) VALUES (' "&incept (i) &", ' &membername& "', '" &title& ", '" &message& "', Now (), 0, 1) When the field is more, and the updated table is more, it will be more cumbersome to modify, and find errors are more difficult. Using this SQL class simplifies the modification and makes it easy to find errors. By adding field names and field values through the AddField function of the class, you can easily insert field names and field values into the SQL statement, and then return the SQL statement.
Let's take a look at the code for this class:
<%
Class SqlString
'************************************
' Variable definition
'************************************
' sTableName----table name
' isqltype----SQL statement type: 0-Add, 1-update, 2-delete, 3-query
' Swhere----conditions
' Sorder----Sorting method
' sSQL----value
Private Stablename,isqltype,swhere,sorder,ssql
'************************************
' Class initialization/end
'************************************
Private Sub Class_Initialize ()
Stablename= ""
Isqltype=0
Swhere= ""
Sorder= ""
Ssql= ""
End Sub
Private Sub Class_Terminate ()
End Sub
'************************************
' Property
'************************************
' Set the properties of the table name
Public Property Let TableName (value)
Stablename=value
End Property
' Set condition
Public Property Let Where (value)
Swhere=value
End Property
' Set sort style
Public Property Let order (value)
Sorder=value
End Property
' Set the type of the query statement
Public Property Let SqlType (value)
Isqltype=value
Select Case Isqltype
Case 0
Ssql= "INSERT into #0 (#1) VALUES (#2)"
Case 1
ssql= "Update #0 set #1 = #2"
Case 2
Ssql= "Delete from #0"
Case 3
Ssql= "Select #1 from #0"
End Select
End Property
'************************************
' function
'************************************
' Add field (field name, field value)
Public Sub AddField (sfieldname,svalue)
Select Case Isqltype
Case 0
Ssql=replace (sSQL, "#1", Sfieldname & ", #1")
Ssql=replace (sSQL, "#2", "'" & Sfieldname & "', #2")
Case 1
Ssql=replace (sSQL, "#1", Sfieldname)
Ssql=replace (sSQL, "#2", "'" & Sfieldname & "', #1 = #2")
Case 3
Ssql=replace (sSQL, "#1", Sfieldname & ", #1")
End Select
End Sub
' Return SQL statement
Public Function Returnsql ()
Ssql=replace (sSQL, "#0", sTableName)
Select Case Isqltype
Case 0
Ssql=replace (sSQL, ", #1", "")
Ssql=replace (sSQL, ", #2", "")
Case 1
Ssql=replace (sSQL, ", #1 = #2", "")
Case 3
Ssql=replace (sSQL, ", #1", "")
End Select
If Swhere <> "" Then
Ssql=ssql & "where" & Swhere
End If
If Sorder <> "" Then
Ssql=ssql & "ORDER BY" & Sorder
End If
Returnsql=ssql
End Function
' Empty statement
Public Sub Clear ()
Stablename= ""
Isqltype=0
Swhere= ""
Sorder= ""
Ssql= ""
End Sub
End Class
%>