Fixed loss of time information during string conversion

This commit is contained in:
louis 2017-07-11 17:01:25 +02:00
parent d5bd7d9601
commit 0d001583b2

View File

@ -3,7 +3,7 @@ extern crate time;
use Result;
use types::{FromSql, FromSqlError, FromSqlResult, ToSql, ToSqlOutput, ValueRef};
const SQLITE_DATETIME_FMT: &'static str = "%Y-%m-%d %H:%M:%S";
const SQLITE_DATETIME_FMT: &'static str = "%Y-%m-%d %H:%M:%f %z";
impl ToSql for time::Timespec {
fn to_sql(&self) -> Result<ToSqlOutput> {