send date
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2022-10-29 13:51:57 +10:00
parent 218484a0f1
commit 2c485665b0

View File

@ -127,8 +127,10 @@ namespace NeDvachAPI
conn.Open(); conn.Open();
using (var command = new NpgsqlCommand(@" using (var command = new NpgsqlCommand(@"
INSERT INTO dvach " + @"(post_id, post, post_timestamp) INSERT INTO dvach (post_id, post, post_timestamp)
VALUES (DEFAULT, @postText, ( SELECT date_trunc('second', now()::timestamp(0) ) )", conn)) VALUES ( DEFAULT, @postText, (
SELECT date_trunc('second', now()::timestamp(0)
) )", conn))
{ {
command.Parameters.AddWithValue("postText", postToSend.Text); command.Parameters.AddWithValue("postText", postToSend.Text);
//command.Parameters.AddWithValue("postTimeStamp", DateTime.Now.ToString("dd/MM/yyyy HH:mm")); //command.Parameters.AddWithValue("postTimeStamp", DateTime.Now.ToString("dd/MM/yyyy HH:mm"));