1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 13:47:33 +02:00

Microsoft SQL Server and MSSQL support for microseconds fix cont.

This commit is contained in:
David Grudl
2017-07-26 19:25:38 +02:00
parent 55523f4ed8
commit 1b516786fb

View File

@@ -257,7 +257,7 @@ class SqlsrvDriver implements Dibi\Driver, Dibi\ResultDriver
if (!$value instanceof \DateTimeInterface) {
$value = new Dibi\DateTime($value);
}
return $value->format("'Y-m-d H:i:s.u'");
return 'CONVERT(DATETIME2(7), ' . $value->format("'Y-m-d H:i:s.u'") . ')';
}