So looking at this:
<sql:param><c:out value="${param.time}" /></sql:param>
Unless you're using c:out to escapeXml your request parameter, or as you say, prevent nulls from entering the database, I'm not sure why you would do this. Just do
<sql:param value="${param.time}" />
Then if param.time is null, it stores null in the database.
-- Serge Knystautas President Lokitech >> software . strategy . design >> http://www.lokitech.com/ p. 1.301.656.5501 e. [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
