Hello, 

I am trying to follow the tutorial (Tutorial on J2EE using JBOSS, Eclipse and Lomboz), 
getting the follwoing error,  chapter 3 example.  I followed every all the steps as 
described in the tutorial.

Table not found: STOREACCESS in statement [select userid from storeaccess  where 
username = 'ANDY' and password = 'PASSWD']

I tried to connect with or without userid,

queryString = "select userid from storeaccess  where username = ? and password = ?";

conn = jdbcFactory.getConnection("sa","");
ps = conn.prepareStatement(queryString);
ps.setString(1, username);
ps.setString(2, password);
rs = ps.executeQuery();

ps.executeQuery() causes to throw the following exception :

Table not found: STOREACCESS in statement [select userid from storeaccess  where 
username = 'ANDY' and password = 'PASSWD']


I checked the HSQL Database Manger, the table is there.

I have no idea what's going on. I will appreciate your help.

Thank you,

-debashis

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823157#3823157

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823157


-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to