> We are not able to post more than 255 chars using the POST method. We
 > are using MS-ACCESS as the backend database and the field type in the
 > database table is MEMO.

The JDBC-ODBC driver is truncating your data ;)  There is a fix posted at
Sun's "knowledge base", which uses a prepared statement and a stream method
to set the statement's field.  Be careful though, if your input parameter
is null (a common occurance with HTML forms), the method will fail; either
set null to "", or simply use setString if the input parameter is less than
255 in length.


Rick

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to