Forum de discussion
Forum « Programmation ASP » (archives)
Re: problem procedure stockée
Envoyé: 3 février 2005, 10h42 par gs
Il me semble qu'on peut faire plus simple, en espérant que ça pourra t'aider :
dim StrConn, StrSQL,Conntemp,rs
StrConn="DRIVER={SQL Server};SERVER=XXX;DATABASE=XXX;UID=;PWD"
set conntemp=server.CreateObject("ADODB.Connection")
conntemp.open StrConn
StrSQL="select * from categorie where categorie.id_cat in (select id_cat from relation1 where cat_mere= " & TaVARIABLE & ")"
set rs = conntemp.execute(StrSQL)
rs.movefirst
do while not rs.eof
....
Réponses
|