From b033df26a53973d26e819b00773ae96708cd295a Mon Sep 17 00:00:00 2001 From: Eduardo Bacchi Kienetz Date: Tue, 2 Dec 2008 12:13:58 -0500 Subject: [PATCH] Get datetime fields without the milliseconds Return datetime fields up to the seconds only. --- versaplexd/vxdbschema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versaplexd/vxdbschema.cs b/versaplexd/vxdbschema.cs index 44d1df3..1954007 100644 --- a/versaplexd/vxdbschema.cs +++ b/versaplexd/vxdbschema.cs @@ -1584,7 +1584,7 @@ internal class VxDbSchema : ISchemaBackend if (types[colnum] == typeof(System.DateTime)) { str = ((DateTime)elem).ToString( - "yyyy-MM-dd HH:mm:ss.fff"); + "yyyy-MM-dd HH:mm:ss"); } else str = (string)elem; -- 2.11.4.GIT