mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAdaptor/PostgreSQLAdaptor/EOPostgreSQLExpression.m
(+[formatValue:forAttribute:]): Do not escape underscore characters in values. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@28316 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2cf0e274c8
commit
12e165a720
2 changed files with 8 additions and 6 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,9 @@
|
|||
2009-06-01 Georg Fleischmann <g.fleischmann@vhf.de>
|
||||
|
||||
* EOAdaptor/PostgreSQLAdaptor/EOPostgreSQLExpression.m
|
||||
(+[formatValue:forAttribute:]): Do not escape underscore characters
|
||||
in values.
|
||||
|
||||
2009-06-01 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* EOControl/EOAndQualifier.m
|
||||
|
@ -14,8 +20,8 @@
|
|||
|
||||
2009-03-16 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* EOAccess/EODatabase.m (setUpdateStrategy:): Count the snapshots
|
||||
to determine if we actually already have fetched them.
|
||||
* EOAccess/EODatabaseContext.m (setUpdateStrategy:): Count the
|
||||
snapshots to determine if we actually already have fetched them.
|
||||
Reported by: Thierry Delhaise <befree_fr@mac.com>
|
||||
|
||||
2009-03-03 Matt Rice <ratmice@gmail.com>
|
||||
|
|
|
@ -351,10 +351,6 @@ RCS_ID("$Id$")
|
|||
[string insertString: @"\\" atIndex: dif + i];
|
||||
dif++;
|
||||
break;
|
||||
case '_':
|
||||
[string insertString: @"\\" atIndex: dif + i];
|
||||
dif++;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue