On Aug 17, 2006, at 8:34 AM, John Siracusa wrote:

> Can you run the query from plain DBI using bind params?

I could

I finally figured out that it was a browser issue.

sub _standardize_string_newlines
{
        my      ( $string , $force_trailing_newline )= @_;
        return if !defined $string or !$string;
        $string=~ s/\r\n/\n/g;
        return $string if substr( $string, -1 ) eq "\n" ;
        $string .= $force_trailing_newline ? "\n" : '';
        return $string ;
}

i'm including that dumb code here, because it might make a decent  
helper function to rose or another author.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Rose-db-object mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/rose-db-object

Reply via email to