XSQL and multiple values from select box

From: Dan <dan.cutler_at_exactis.com>
Date: Sat, 21 Jul 2001 21:52:33 GMT
Message-ID: <5ae749d0.0106141145.5fc3d1d8_at_posting.google.com>


HELP!!! [Quoted] Given this xsql file (test.xsql)

<?xml version="1.0" encoding="UTF-8"?>
<xsql:query reparse="yes" connection="scott_tiger" xmlns:xsql="urn:oracle-xsql">

select

   client_name, client_id
from
  client
where

[Quoted]    client_id in ({_at_client_id})

</xsql:query>

and running this
http://host/test.xsql?client_id=5&client_id=6&client_id=8

does not resolve the where clause into
"where client_id in (5,6,7)"

instead, it does this:

"where client_id in (5)"

How can I get this to work?

Thank you!

--Dan Cutler Received on Sat Jul 21 2001 - 23:52:33 CEST

Original text of this message