Pessoal, Estou com o seguinte problema: o banco abre, o recordset também, mas quando vai executar o sql fica parado nesta linha e não retorna nada. Veja o codigo abaixo: <html><body>
<%
Response.write ("iNICIO ok<BR>")
Response.flush
que = "SELECT 1 FROM dual"
'connstring = "DBQ=c:\teste.mdb;Driver={Microsoft Access Driver (*.mdb)}"
connstring = "DSN=ORA_REPOSIT; uid=mstr_rep_des;pwd=mstr_rep_des;"
Set Conexao = Server.CreateObject("ADODB.Connection")
Response.write ("BANCO CONECTADO ok<BR>")
Response.flush
Conexao.Open connstring
Response.write ("CONEXAO ABERTA Ok<BR>")
Response.flush
Dim rs
set rs = server.createObject("adodb.recordset")
Response.write ("RECORDSET ativo Ok<BR>")
Response.flush
rsInsert.open que, conexao
Response.write ("RECORDSET ABERTO Ok<BR>")
Response.flush
'Set tabela = Conexao.Execute (que)
'While not tabela.EOF
'response.write tabela(1).value
'wend
set rs = nothing
conexao.close
set conexao = nothing
Response.write ("TESTE FIM Ok<BR>")
Response.flush
%></body></html> alguém pode me ajudar ?