创建会话连接

时间:2014-11-11 03:58:52

标签: sql oracle asp-classic

我已经创建了与数据库的连接。我的源代码是:

Set Conn = Server.CreateObject("ADODB.Connection")

我想尝试if else语句

if session("myDBtype") = oracle then
Conn.open "DSN=DES1001;UID=DES1001;PWD=Ibs185"
else if
Conn.open "FILEDSN=DES1001.dsn"
end if

显示语法错误

我究竟错过了什么?我已经宣布了会议:

Session("myDBtype")
myDBtype = "oracle"

1 个答案:

答案 0 :(得分:1)

应该是

if ...then

else

end if

<%
myDBtype = "oracle"
Session("myDBtype") = myDBtype 

if session("myDBtype") = myDBtype  then
 conn.open "DSN=DES1001;UID=DES1001;PWD=Ibs185"
else
 conn.open "FILEDSN=DES1001.dsn"
end if


%>