Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to save date and time | Oracle APEX21.1

Omar BaigOct 25 2022

How can i save date and time in database through PL/SQL code (Process)
BEGIN
INSERT INTO abc
(iabc)
VALUES
(to_CHAR(:P6_vabc, 'MM/DD/YYYY'));
END;
giving me error, i try this one as well
(to_date(:P6_vabc, 'MM/DD/YYYY')); but fail.
Need solution.

Comments
Post Details
Added on Oct 25 2022
4 comments
780 views