SQL2 = "SELECT [TEMPO AGORA] From [Plan1$] where TA='"&TERMINAL&"'ORDER BY [TEMPO DE SOBREESTADIA AGORA] DESC"
Set rs2 = conn.Execute(SQL2)
IF NOT RS2.EOF THEN
'FUNÇÕES
END IF
Cheguei no seguinte ponto:
<%@ Import namespace="System.Data" %>
<%@ Import namespace="System.Data.OleDb" %>
<%
Dim objConn As OleDbConnection
Dim strCaminho As String = Server.MapPath("siscope1.mdb")
objConn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strCaminho & ";")
objConn.Open()
Dim SQL2 As String = "SELECT [TEMPO AGORA] From [Plan1$] where TA='"&TERMINAL&"'ORDER BY [TEMPO DE SOBREESTADIA AGORA] DESC"
Como consigo navegar pelos registros como em destacado em vermelho acima , já que o asp.net não aceita set??? (Compiler Error Message: BC30807: 'Let' and 'Set' assignment statements are no longer supported.)
Pergunta
Douglas Zacharias
Fala galera!
Estou penando aqui pra resolver essa questão da migração para asp.net.
Como o tempo tá curto, estou mantendo em vb mas depois vou escrever em c#.
Seguindo estou com um problema porque ele não aceita meu "set".
A minha query era executada da seguinte forma:
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DRIVER=Microsoft Excel Driver (*.xls); ReadOnly=1; DBQ=" & Server.MapPath("SISCOPE.xls")
SQL2 = "SELECT [TEMPO AGORA] From [Plan1$] where TA='"&TERMINAL&"'ORDER BY [TEMPO DE SOBREESTADIA AGORA] DESC"
Set rs2 = conn.Execute(SQL2)
IF NOT RS2.EOF THEN
'FUNÇÕES
END IF
Cheguei no seguinte ponto:
<%@ Import namespace="System.Data" %>
<%@ Import namespace="System.Data.OleDb" %>
<%
Dim objConn As OleDbConnection
Dim strCaminho As String = Server.MapPath("siscope1.mdb")
objConn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strCaminho & ";")
objConn.Open()
Dim SQL2 As String = "SELECT [TEMPO AGORA] From [Plan1$] where TA='"&TERMINAL&"'ORDER BY [TEMPO DE SOBREESTADIA AGORA] DESC"
Como consigo navegar pelos registros como em destacado em vermelho acima , já que o asp.net não aceita set??? (Compiler Error Message: BC30807: 'Let' and 'Set' assignment statements are no longer supported.)
Editado por Douglas ZachariasLink para o comentário
Compartilhar em outros sites
11 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.