Skip to content

Commit

Permalink
Was using virtual instead of override... Ooops!
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Sep 12, 2014
1 parent 1e47cb1 commit 8e1de4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dg.Sql.Connector.PostgreSQL/PostgreSQLConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,10 +389,11 @@ public override string EscapeString(string Value)
}
}

public virtual string PrepareValue(bool Value)
public override string PrepareValue(bool Value)
{
return Value ? @"TRUE" : @"FALSE";
}

public override string PrepareValue(Guid Value)
{
return '\'' + Value.ToString(@"D") + '\'';
Expand Down

0 comments on commit 8e1de4b

Please sign in to comment.