Hi the query below performs an insert on sql server, when the insert is done date minutes and seconds are correct but the time is wrong (if there are 8 and I insert an insert the value is saved 7) the format of the hours is that Italian, below the sql code that executes the insert. How do I solve this?
Sql Server:
Insert into Magazzino(Nome,Indirizzo,DataCreazione)
values(@Nome,@Indirizzo,convert(datetime, GETDATE(),105))