Derby network server

2011-05-02 Thread John English
I have a webapp which runs a networked Derby server. I want to be able to access it from a separate app. The webapp starts the server from the contextInitialized() method of a ServletContextListener: server = new NetworkServerControl(); server.start(null); which works fine. However, when I

[ANNOUNCE] Apache Derby 10.8.1.2 released

2011-05-02 Thread Rick Hillegas
The Apache Derby project is pleased to announce feature release 10.8.1.2. Apache Derby is a subproject of the Apache DB project. Derby is a pure Java relational database engine which conforms to the ISO/ANSI SQL and JDBC standards. Derby aims to be easy for developers and end-users to work

Re: [ANNOUNCE] Apache Derby 10.8.1.2 released

2011-05-02 Thread dev@xx
Pay attention to Note 4965 about change to conversion from BOOLEAN to CHAR !! If you use setBoolean() or setObject() with a CHAR(1) datatype you must change your code and use setInt() or Derby will try to store true or false strings. I never undertsand why we need to accept breaking code

Re: Derby network server

2011-05-02 Thread Kristian Waagan
On 02.05.11 15:13, John English wrote: I have a webapp which runs a networked Derby server. I want to be able to access it from a separate app. The webapp starts the server from the contextInitialized() method of a ServletContextListener: server = new NetworkServerControl();