Closed GoogleCodeExporter closed 9 years ago
Codefile:InsertClauseBuilder.cs
Method:GetUpdateCommand needs also a modification:
string columnName_safe = s_vendor.FieldName_Safe(colAtt.Name);
if (columnName_safe != columnName_safe.ToLower()) //mycode
columnName_safe = "\"" + columnName_safe + "\""; //mycode
Original comment by Tonch...@gmail.com
on 20 Jan 2008 at 12:03
to make the update work with mixed case column names
Original comment by Tonch...@gmail.com
on 20 Jan 2008 at 12:09
in PostgreSql
Original comment by Tonch...@gmail.com
on 20 Jan 2008 at 8:00
This is the same thing for Oracle, and is it probably the same thing in some
other
databases.
Original comment by picrap
on 15 Mar 2008 at 10:53
Original comment by picrap
on 15 Mar 2008 at 11:22
Currently there is a code in svn that handles most of the cases like columns and
sequences.
I suggest that we all use: DbLinq\Util\QuotesHelper.cs to fix this issue. Later
it
will be easier to remove it if the problem is fixed in a better way.
Original comment by Tonch...@gmail.com
on 22 Mar 2008 at 10:56
QuotesHelper does not use vendors specifity, so it may be a problem.
I suggest that each IVendor implementation provides its own quotes management
(of
course, there can be a default management in Vendor, with standard quotes).
Anton, can you work on that?
Original comment by picrap
on 28 Apr 2008 at 9:51
Pascal adds quoting to DbMetal. So this issue should not appear and quoting
needs
removed from core.
Original comment by kobrule...@gmail.com
on 16 May 2008 at 11:42
Original comment by picrap
on 21 Sep 2008 at 9:10
Original issue reported on code.google.com by
Tonch...@gmail.com
on 19 Jan 2008 at 11:29