Try OpenEdge Now
skip to main content
SQL Reference
JDBC Reference : Java Class Reference : DhSQLResultSet : DhSQLResultSet.makeNULL : Throws
 
Throws
DhSQLException

Example

This code fragment illustrates SQLResultSet.set and SQLResultSet.makeNULL:
CREATE PROCEDURE test_makeNULL2(
IN char_in CHAR(20)
RESULT ( res_char CHAR(20) , res_vchar VARCHAR(30))
BEGIN
SQLResultSet.set(1,char_in);
SQLResultSet.makeNULL(2);
END