Skip to content

Commit

Permalink
Corrected validation of milliseconds in Microsoft Access. #76.
Browse files Browse the repository at this point in the history
  • Loading branch information
hisystems committed Jun 25, 2013
1 parent 8fcd4d4 commit 3a22b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQL/Serializers/MicrosoftAccessSerializer.cs
Expand Up @@ -68,7 +68,7 @@ public override string SerializeTableExists(SQLTableExists tableExists)

public override string SerializeDateTime(DateTime dateTime)
{
return "#" + base.SerializeDateTimeValue(dateTime) + "#";
return "#" + this.SerializeDateTimeValue(dateTime) + "#";
}

public override string SerializeGetDateFunctionExpression(SQLGetDateFunctionExpression expression)
Expand Down

0 comments on commit 3a22b6a

Please sign in to comment.