The problem is that when i make my request, the browser show all records
even if i insert a WHERE condition in order to filter records.
the code is :
<%
Dim objConnect
Dim objRecordset
Set objConnect = Server.CreateObject("ADODB.Connection")
objConnect.open "provider=IBMDA400;data source=MyAS400Name", request("User")
, request("Pwd")
Set objRecordset = Server.CreateObject("ADODB.Recordset")
objRecordset.CursorType= adOpenStatic
objRecordset.open "SELECT * FROM LIB/FILE(MEMBER) Where USER='toto' " ,
objConnect
%>
If someone knows why....
Mark Spencer
Christophe Chene <christop...@norbert-dentressangle.com> wrote in
message news:8jhkds$6io$1...@lyon110.dtr.fr...
Mark Spencer
Christophe Chene <christop...@norbert-dentressangle.com> wrote in
message news:8jq1qh$u8h$1...@lyon110.dtr.fr...
with a "select * from bib/file where ..." the where is ommitted in the
result (bug??)
with a "select * from bib.file where ..." it works perfectly !!!