How to insert date and time in oracle? via c #

-3

I'm developing a desktop application and it was working fine until the time I tried to insert the date and time generated by C # into a table in oracle. Can someone teach me the query to insert date into this format:

21/07/2018 12:54:35: (dd/mm/yyyy hh24/mm/ss).
    
asked by anonymous 11.05.2018 / 16:12

1 answer

0
 INSERT INTO tabela 
(codigo, datahora ) 
VALUES
(1, TO_DATE(nvl('','19/07/2017 19:49:00'),'DD/MM/YYYY HH24:MI:SS'))

Resolved:)

    
17.05.2018 / 15:31