SQL文を統合するクラス
19645 ワード
ASPデータベースプログラムを書くときは、SQL文を使うのが普通ですが、データを増やしたり更新したりするときは、insert into message(incept,sender,title,content,sendtime,flag,issend)values('"&incept(i)&"","&membername&","""""""""""""&title&","""""""&message&",Now(),0,1)フィールドが多いとき、更新したテーブルが多いときは、修正が面倒で、修正が面倒で、修正が面倒で、修正が面倒で、修正が面倒で、修正が面倒で、面倒で、修正が面倒で、修正が面倒で、面倒で、修正が面倒でまた、検索エラーも比較的難しい.このSQLクラスを使用すると、簡単に修正できますし、エラーも簡単に確認できます.クラスのAddField関数でフィールド名とフィールド値を追加すると、フィールド名とフィールド値をSQL文に簡単に挿入し、SQL文に戻ることができます.
このクラスのコードを見てみましょう.
使用方法:
例文:insert into message(incept,sender,title,content,sendtime,flag,issend)values('"&incept(i)&",'"&membername&",'"&title&",'""&message&",Now(),0,1)
set a =new SQLString
クラスオブジェクトの作成
a.TableName="message "
'テーブル名をmessageとして設定
a.SQLType=0
「クエリー・タイプを増加レコードに設定する」
a.AddField "incept", incept(i)
a.AddField "sender ", membername
a.AddField "title ", membername
a.AddField "sender ", title
a.AddField "content ", message
a.AddField "sendtime ", sendtime()
a.AddField "flag", 0
a.AddField "issend ", 1
Response.Write a.ReturnSQl
set a=nothing
このクラスのコードを見てみましょう.
-
- class SQLString
-
- '************************************
-
- '
-
- '************************************
-
- 'sTableName ----
-
- 'iSQLType ----SQL :0- ,1- ,2- ,3-
-
- 'sWhere ----
-
- 'sOrder ----
-
- 'sSQL ----
-
- Private sTableName,iSQLType,sWhere,sOrder,sSQL
-
-
-
- '************************************
-
- ' /
-
- '************************************
-
-
-
- Private Sub Class_Initialize()
-
- sTableName=""
-
- iSQLType=0
-
- sWhere=""
-
- sOrder=""
-
- sSQL=""
-
- End Sub
-
-
-
- Private Sub Class_Terminate()
-
- End Sub
-
-
-
- '************************************
-
- '
-
- '************************************
-
- ‘
-
- Public Property Let TableName(value)
-
- sTableName=value
-
- End Property
-
-
-
- ‘
-
- Public Property Let Where(value)
-
- sWhere=value
-
- End Property
-
-
-
- ‘
-
- Public Property Let Order(value)
-
- sOrder=value
-
- End Property
-
-
-
- ‘
-
- 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
-
-
-
- '************************************
-
- '
-
- '************************************
-
-
-
- ' ( , )
-
- 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
-
-
-
- ' SQL
-
- 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
-
-
-
- '
-
- Public Sub Clear()
-
- sTableName=""
-
- iSQLType=0
-
- sWhere=""
-
- sOrder=""
-
- sSQL=""
-
- End Sub
-
- end class
-
- %>
使用方法:
例文:insert into message(incept,sender,title,content,sendtime,flag,issend)values('"&incept(i)&",'"&membername&",'"&title&",'""&message&",Now(),0,1)
set a =new SQLString
クラスオブジェクトの作成
a.TableName="message "
'テーブル名をmessageとして設定
a.SQLType=0
「クエリー・タイプを増加レコードに設定する」
a.AddField "incept", incept(i)
a.AddField "sender ", membername
a.AddField "title ", membername
a.AddField "sender ", title
a.AddField "content ", message
a.AddField "sendtime ", sendtime()
a.AddField "flag", 0
a.AddField "issend ", 1
Response.Write a.ReturnSQl
set a=nothing