아시는 분들도 있겠지만... ^^
ODBC로는 연결이 잘되는데 OLEDB로 연결하려고 삽질 했네요 ㅡㅡ'
이렇게 간단한걸...
1.준비물
MyOLEDB3.exe (http://www.mysql.com/downloads/download.php?
file=Downloads/Win32/MyOLEDB3.exe&pick=mirror)
2. Connect 부분
"Provider=MySqlProv;Location=xxx.xxx.xxx.xxx;Data Source=디비명;User ID=아이디;Password=패스;"
- 한글부분은 알아서 ^^ (xxx.xxx.xxx.xxx는 ip)
3. 간략 예제
<%
strcon = "Provider=MySqlProv;Location=xxx.xxx.xxx.xxx;Data Source=디비명;User ID=아이디;Password=패스;"
set DbCon = Server.CreateObject("ADODB.Connection")
DbCon.open strcon
SQL_query = "SELECT count(*) FROM 테이블명"
Set RS = DbCon.Execute(SQL_query)
Response.Write " Query : " + SQL_query + "<p>"
Response.Write " Result : "
while not RS.eof
Response.Write RS(0)
Response.Write "<br>"
RS.MoveNext
wend
RS.Close
DbCon.Close
set RS = nothing
set DbCon = nothing
%>
허접하네요...
간만에 asp를 봐서 예제두 ㅡㅡ'
좋은하루!
출처 : http://blog.naver.com/wookacula/40006412962
ODBC로는 연결이 잘되는데 OLEDB로 연결하려고 삽질 했네요 ㅡㅡ'
이렇게 간단한걸...
1.준비물
MyOLEDB3.exe (http://www.mysql.com/downloads/download.php?
file=Downloads/Win32/MyOLEDB3.exe&pick=mirror)
2. Connect 부분
"Provider=MySqlProv;Location=xxx.xxx.xxx.xxx;Data Source=디비명;User ID=아이디;Password=패스;"
- 한글부분은 알아서 ^^ (xxx.xxx.xxx.xxx는 ip)
3. 간략 예제
<%
strcon = "Provider=MySqlProv;Location=xxx.xxx.xxx.xxx;Data Source=디비명;User ID=아이디;Password=패스;"
set DbCon = Server.CreateObject("ADODB.Connection")
DbCon.open strcon
SQL_query = "SELECT count(*) FROM 테이블명"
Set RS = DbCon.Execute(SQL_query)
Response.Write " Query : " + SQL_query + "<p>"
Response.Write " Result : "
while not RS.eof
Response.Write RS(0)
Response.Write "<br>"
RS.MoveNext
wend
RS.Close
DbCon.Close
set RS = nothing
set DbCon = nothing
%>
허접하네요...
간만에 asp를 봐서 예제두 ㅡㅡ'
좋은하루!
출처 : http://blog.naver.com/wookacula/40006412962
'Development' 카테고리의 다른 글
에디트 플러스 - Key매크로 (2) | 2006.09.12 |
---|---|
BeginTrans, CommitTrans, RollbackTrans 메서드 (0) | 2006.04.26 |
Web Hacking 1탄 SQL Injection (0) | 2006.04.21 |
웹 개발시 유용한 CheatSheets (0) | 2006.03.24 |
Visual Studio 2005 Express Edition 한글판 릴리즈 (2) | 2006.02.17 |