Search found 4 matches
- 27.09.2010, 13:56
- Forum: ZeosLib 7.0 Beta Forum
- Topic: Zeos 7 + Mysql + Lazarus
- Replies: 2
- Views: 671
Zeos 7 + Mysql + Lazarus
Hi All! I Have a very odd problem with zeos+mysql+lazarus: the table in contains correct cyrillic char data ( it's visible in phpmyadmin, sqlyog etc... even in lazarus db grid after SQLQuery:=TZReadOnlyQuery.Create(Self); with SQLQuery do begin ; Connection:=TDG_MySQL; SQL.TEXT := 'SET CHARACTER SET...
- 12.05.2010, 09:49
- Forum: 6.6 - stable
- Topic: loCaseInsensitive
- Replies: 5
- Views: 721
is 7.0 pretty stable
is 7.0 pretty stable
- 12.05.2010, 07:33
- Forum: 6.6 - stable
- Topic: loCaseInsensitive
- Replies: 5
- Views: 721
loCaseInsensitive not working correctly with uft8 non ansi
from ZAbstractRODataSet CompareDataFields if CaseInsensitive then begin Value1 := AnsiUpperCase(SoftVarManager.GetAsString(KeyValues )); Value2 := AnsiUpperCase(SoftVarManager.GetAsString(RowValues )); when the Values are utf8 the procedure does not locate correctly non ansi strings (bulgarian cyril...
- 11.05.2010, 09:52
- Forum: 6.6 - stable
- Topic: loCaseInsensitive
- Replies: 5
- Views: 721
loCaseInsensitive
loCaseInsensitive is not working properly on Lazarus with non ascii charsets (utf8) because it use AnsiUpperCase and not Utf8UpperCase .. any ideas of fixups or patches?