오라클 clob타입 입력방법
본문
Public Sub ClobInsert(query, cont, no)
%>
<!--METADATA TYPE="typelib" NAME="ADODB Type Library" FILE="C:\Program Files\Common Files\SYSTEM\ADO\msado15.dll"-->
<%
'++++++++++++++++++++++++++++++++++++
' Query : 쿼리문을 입력한다.
' Cont : 본문내용(타입은 Clob 타입이 였을경우 사용된다)
' no : 글번호를 입력
'++++++++++++++++++++++++++++++++++++
Set oCmd = Server.CreateObject("ADODB.Command")
With oCmd
.ActiveConnection = Conn
.CommandText = query
.CommandType = adCmdText
.Parameters.Append .CreateParameter("@text",adLongVarChar,adParamInput,LenB(cont),cont)
.Parameters.Append .CreateParameter("@no",adDouble,adParamInput)
.Parameters("@text") = cont
.Parameters("@no") = no
.Execute
End With
End Sub
%>
[이 게시물은 듀라님에 의해 2015-04-03 10:08:13 워드프레스에서 이동 됨]
[이 게시물은 듀라님에 의해 2015-04-03 10:27:24 Public에서 이동 됨]
[이 게시물은 듀라님에 의해 2015-04-03 10:33:53 팁과강좌에서 이동 됨]
[이 게시물은 최고관리자님에 의해 2017-06-10 14:24:30 ASP에서 이동 됨]
0
0
페이지 정보
l2j (121.♡.101.20) 작성일07-05-02 14:53 조회1,249회 댓글0건관련링크
댓글목록
등록된 댓글이 없습니다.