strongloop / strong-oracle

Deprecated: Node.js Driver for Oracle databases (Use https://github.com/oracle/node-oracledb instead)
Other
45 stars 18 forks source link

The procDateTimeOutParam procedure is missing in test.sql #5

Closed BCool13 closed 10 years ago

BCool13 commented 10 years ago

It's not a critical issue but this cause the should support date timestamp out param test to failed. This could be fixed by adding the following code to the test.sql file.

create or replace PROCEDURE procDateTimeOutParam(
    outParam1 OUT DATE,
    outParam2 OUT TIMESTAMP)
IS
BEGIN
  outParam1 := sysdate;
  outParam2 :=CURRENT_TIMESTAMP;
END;
raymondfeng commented 10 years ago

Thanks for reporting the issue. It's fixed now.