* Patch from Ido <idokan@gmail.com> to fix AsString for booleanfield

git-svn-id: trunk@5312 -
This commit is contained in:
michael 2006-11-10 19:31:19 +00:00
parent b0104f2ec8
commit ed9a52a07a

View File

@ -30,7 +30,7 @@ const
// Used in AsBoolean for string fields to determine
// whether it's true or false.
YesNoChars : Array[Boolean] of char = ('Y','N');
YesNoChars : Array[Boolean] of char = ('N', 'Y');
SQLDelimiterCharacters = [';',',',' ','(',')',#13,#10,#9];