* 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:
ayers 2009-06-01 12:02:25 +00:00
parent 2cf0e274c8
commit 12e165a720
2 changed files with 8 additions and 6 deletions

View file

@ -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>

View file

@ -351,10 +351,6 @@ RCS_ID("$Id$")
[string insertString: @"\\" atIndex: dif + i];
dif++;
break;
case '_':
[string insertString: @"\\" atIndex: dif + i];
dif++;
break;
default:
break;
}