DBlinq.Firebird
FirebirdSqlProvider.cs
protected override SqlStatement GetLiteralStringConcat(SqlStatement a,
SqlStatement b)
{
return SqlStatement.Format("{0} || {1}", a, b);
}
previously it was
protected override SqlStatement GetLiteralStringConcat(SqlStatement a,
SqlStatement b)
{
return SqlStatement.Format("CONCAT({0}, {1})", a, b);
}
there was no "CONCAT" function in firebird.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---