Does DBMaker support the functions TO_DATE/TO_CHAR/TO_TIMESTAMP?
TO_DATA: DBMaker supports this UDF, but users should add it by themselves, checking DBMaker installation\4.3\shared\udf\to_date.sql or using cast to achieve.
TO_Char: using cast to achieve.
TO_Timestamp: using ...
Does DBMaker support Resultset.isLast() in JDBC
DBMake doesn’t support Resultset.isLast() method in JDBC. You can use Resultset.next() to check the cursor is in last position of resultset or not. If ResultSet.next() ...