Re: Testing

2006-11-27 Thread Fernanda Pizzorno
Hi Kristian, Last week I tried to subscribe using a gmail account, and it was not as easy as you describe. When I sent the emails with no subject and no message body, I got them in return with the following message: [...] Delivery to the following recipient failed permanently: [EMAIL PROT

Re: GROUP_BY with user functions

2006-09-18 Thread Fernanda Pizzorno
Have you tried this? SELECT my_value FROM (SELECT MY_USER_FUNCTION(t1.field1) AS my_value FROM T1) AS UserFunction GROUP BY my_value Regards, - Fernanda Robert Enyedi wrote: Thanks for the tip. I tried this, but it has the same problem with alias referencing. Regards, Robert Øystein

Re: derby security

2006-08-29 Thread Fernanda Pizzorno
To enable user authentication in Derby you must set the /derby.connection.requireAuthentication/ property to true. You can find more information about derby security on "Derby and Security" in "/Derby Developer's Guide" (http://db.apache.org/derby/docs/dev/devguide/). Fernanda / Hong Ji wrot

Re: updateable result set

2006-07-31 Thread Fernanda Pizzorno
Right now scrollable result sets are not updatable in Derby. Scrollable insensitive updatable result sets will be available on version 10.2. You can try it out by downloading the version 10.2 alpha snapshot at http://db.apache.org/derby/derby_downloads.html#Snapshot+Jars. Fernanda Eric Blenku

Re: ResultSet updateRow() error

2005-12-01 Thread Fernanda Pizzorno
Parkway Suite 215 Norcross Ga, 30092 -Original Message- From: Fernanda Pizzorno [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:59 AM To: Derby Discussion Subject: Re: ResultSet updateRow() error It appears to me that the behavior you are seeing is similar to that of

Re: ResultSet updateRow() error

2005-12-01 Thread Fernanda Pizzorno
It appears to me that the behavior you are seeing is similar to that of JIRA 610 (http://issues.apache.org/jira/browse/DERBY-610), except that you are using updateRow and not positioned update. Is that the case? Fernanda Danny wrote: I figured out what the problem was, although, I am not sure

Re: Garbage Collector and memory

2005-10-25 Thread Fernanda Pizzorno
Juan Ignacio Villa wrote: [...] Consulta = DBConexion.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE); Rs = Consulta.executeQuery(sql); [...] Hello, Scrollable sensitive result sets (ResultSet.TYPE_SCROLL_SENSITIVE) are not implemented in Derby. Scrollable ins