Re: Simper with MySQL

2002-03-05 Thread Bryan Field-Elliot
It's LONGVARCHAR (== java.sql.Types value of -1). Two lines of code to be added to Simper to support this... Will be doing another checking (to sf) in the short term. FYI, the "null" type is 0. And just what the heck does that mean? I've never heard of a column type of null (as opposed to a colum

Re: Simper with MySQL

2002-03-05 Thread Ted Husted
It's probably null. I've noticed that different pools handle this differently. I believe Resin returns zero instead. Bryan Field-Elliot wrote: > > Yes, > > There are two functions with Simper where we do mapping of > java.sql.Types to Java classes, and vice versa. > > The error you're getting

Re: Simper with MySQL

2002-03-05 Thread Bryan Field-Elliot
Yes, There are two functions with Simper where we do mapping of java.sql.Types to Java classes, and vice versa. The error you're getting is that the functions mentioned above don't yet understand java.sql.Type of -1. Do you know offhand what type that is? It can be added easily to Simper, I can