jetty jdbc

2 replies [Last post]
apnels
User offline. Last seen 17 weeks 4 days ago. Offline
Joined: 2010-02-04

Hi everybody!

Does someone know to to setup a specific password for 'sa' user in jdbc???

I'va found jdbcRealm.properties in witch a login is define but no way to find 'sa' user!
In AS2_DB.log file we can see that 'sa' is use for establishing connection to the database:

/*C11*/DISCONNECT
/*C13*/SET SCHEMA PUBLIC
CONNECT USER SA
/*C14*/SET SCHEMA PUBLIC
CONNECT USER SA
/*C15*/SET SCHEMA PUBLIC
CONNECT USER SA

Thanks.

heller
heller's picture
User offline. Last seen 2 hours 37 min ago. Offline
Joined: 2006-05-15

apnels,

Its a hsqldb issue. The user management is DB vendor specific. Please refer to http://hsqldb.org/web/hsqlDocsFrame.html for the documentation of the underlaying hsqldb database.

*Create a user on the DB
e.g. CREATE USER newuser PASSWORD 123test
*Assign some rights to the user
e.g. GRANT SELECT, UPDATE ON aTABLE TO newuser
*Change the DB access class
A change in the de.mendelson.comm.as.database package

Regards
Heller

apnels
User offline. Last seen 17 weeks 4 days ago. Offline
Joined: 2010-02-04

Ok,

Thanks a lot


© 1999-2010 mendelson-e-commerce GmbH | Twitter | Contact us