Re: why not query datas?

2007-01-24 Thread Kevin Williams
I agree with Luciano. It is likely that your query is not returning any rows. You can verify this by running the query: "select USER_ID,USER_NAME,PASSWORD from FM_TEST_CUSTOMER WHERE USER_ID=2" directly against the database using your database console tool. Is it possible there is no r

Re: why not query datas?

2007-01-24 Thread Luciano Resende
You might be getting the IndexOutOfBounds when the query returned 0 elements and you are trying to access an element from SDO like in your example : ("FM_TEST_CUSTOMER[1]"); I'll take a look in details on your example in the morning. -- Luciano Resende http://people.apache.org/~lresende On 1/23/

why not query datas?

2007-01-24 Thread zhuang johnyson
Hello, I have FM_TEST_CUSTOMER.xml: http:///org.apache.tuscany.das.rdb/config.xsd"; xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance";> And my java code: DAS das = DAS.FACTORY.createDAS(test.getConfig("FM_TEST_CUSTOMER.xml"), get