문장
1775 단어 문장
<%
class MyArticle
dim wenzhang_id
dim title1,content1
Private Sub Class_Initialize()
'response.Write " :Class_Initialize<br>"
end sub
Private Sub Class_Terminate()
'response.Write " :Class_Terminate<br>"
end sub
Public Property Let id(byval v)
wenzhang_id = v
End Property
Public Sub conn_sub()
Set conn = Server.createObject("ADODB.Connection")
cnnstr="DRIVER={Microsoft Access Driver (*.mdb)}; "
cnnstr=cnnstr & "DBQ=" & Server.MapPath("admin/WataVase/%29to-dream.mdb")
conn.Open cnnstr
sql = "Select * From Article where Deleted = 0 and ArticleID = "&wenzhang_id
set rs=Server.CreateObject("adodb.recordset")
rs.open sql, conn, 1, 1
title1 = rs("Title")
content1 = rs("Content")
rs.close
set rs = nothing
conn.close
set conn = nothing
end sub
Public Property Get title()
title = title1
End Property
Public Property Get content()
content = content1
End Property
end class
'MyArticle
'dim wenzhang
'set wenzhang = new MyArticle
'wenzhang.id = 3
'call wenzhang.conn_sub()
'response.write wenzhang.title
'response.write wenzhang.content
'set wenzhang = nothing
%>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PostgreSQL 데이터베이스에서 LIKE 문장의 효율성을 보장하는 방법 (권장)많은 사용자들이 LIKE 문장의 효율이 매우 낮다는 것을 발견했기 때문이다. 그러면 Postgresql 데이터에서 LIKE 문장의 집행 효율은 어떨까?우리는 또 어떻게 LIKE 문장의 집행 효율을 높여야 합니까? 일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.