Search found 61 matches

by jeremicm
02.11.2011, 09:59
Forum: ZeosLib 7.0 Beta Forum
Topic: UTF problem with Text fields (mysql)
Replies: 1
Views: 487

UTF problem with Text fields (mysql)

I have test table with 2 varchar fields and 2 text fields, in mysql 5.5 and in mysql 4.1.9. On both servers i have same problem. On a form i put 4 labelededits and copy/paste same text in them, "рузвям ЗЩУЬИ" (some random russian characters...)... In database, results are correct, all fiel...
by jeremicm
18.10.2011, 10:20
Forum: ZeosLib 7.0 Beta Forum
Topic: Strange problem installing 943 on DelphiXE2
Replies: 5
Views: 1009

it work now, but i had to remove


{$IFDEF DELPHI16_UP}Winapi.{$ENDIF} declaraton from ZDbcAdoResultSet.pas (can't find winapi.dcu file)
and
<main_icon> xml tag from ZParseSQL.dproj file (had same icon error on parsesql project)...
by jeremicm
17.10.2011, 10:05
Forum: ZeosLib 7.0 Beta Forum
Topic: Strange problem installing 943 on DelphiXE2
Replies: 5
Views: 1009

Still don't work... I got latest svn (947) and it's same...
zcore.res file is deleted every time i try to build package and error is raised about that icon...

here's screenshot of build log...

http://imageshack.us/photo/my-images/545/greska.png/
by jeremicm
14.10.2011, 12:58
Forum: ZeosLib 7.0 Beta Forum
Topic: Strange problem installing 943 on DelphiXE2
Replies: 5
Views: 1009

Strange problem installing 943 on DelphiXE2

ok, this is very strange... i downloaded rev 943 and tried to install Delphi16 packages... When i try to build zcore, zcore.res file dissapear from package folder, 3 ico files appear in package folder and i get compiler error [BRCC32 Error] ZCore.vrc(59): file not found: ZCore_Icon2.ico also, zcore....
by jeremicm
07.09.2011, 21:30
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos on XE2?
Replies: 40
Views: 10251

Zeos on XE2?

XE2 is here, with 64b compiler... anyone tried to install zeos on new rad studio yet?
by jeremicm
09.08.2011, 08:50
Forum: Firebird
Topic: Query string too long
Replies: 3
Views: 1567

Also instead of

Code: Select all

where ID_CLIENT='''+select_idM+''' 
use

Code: Select all

where ID_CLIENT= :ClientID
frmsetting.qryList.ParamByName('ClientID').Value := select_idM;
by jeremicm
01.08.2011, 08:54
Forum: MySQL
Topic: Error mysql5+zeos6+delphi7+winxp
Replies: 6
Views: 1422

ntdll.dll gets damaged very often.... reinstall XP and all your problem should be solved....
by jeremicm
28.07.2011, 08:47
Forum: MS SQL Server
Topic: VARCHAR over 256 characters return always 256?
Replies: 5
Views: 3689

varchar(1000) holds only 1000 bytes, not 1000 characters... try using varchar(max) instead....
by jeremicm
01.07.2011, 13:21
Forum: 6.6 - stable
Topic: How to get the sql with parameters replaced?
Replies: 4
Views: 759

Sorry, but i can't understand your question very well, but i think you wan't to see values of parameters instead of :paramname... if so, use ZSQLMonitor component and look at logs component create....
by jeremicm
28.06.2011, 12:29
Forum: Off Topic
Topic: spam button??
Replies: 4
Views: 24517

spam button??

from time to time, there's a few spam messages on forum... latest are
http://zeos.firmos.at/viewtopic.php?p=13234#13234 and http://zeos.firmos.at/viewtopic.php?p=13235#13235..

Is there a button to report this somewhere?
by jeremicm
15.06.2011, 09:20
Forum: 6.6 - stable
Topic: Maximum number of fields (columns)
Replies: 2
Views: 475

are you sure that select is problem? i often get that error on some longint calculations on my app start... sometimes it raises error, sometimes it's fine...
by jeremicm
05.05.2011, 10:19
Forum: 6.6 - stable
Topic: problems with param for limit clause (in Zquery)
Replies: 10
Views: 1460

Code: Select all

zquery.SQL.Add('SELECT * ')
zquery.SQL.Add('FROM production ');
zquery.SQL.Add('LIMIT :param1');
zquery.ParamByName('param1').Value := 100;
try this?
by jeremicm
15.04.2011, 09:23
Forum: 6.6 - stable
Topic: How to get the Columntypes of a tabel
Replies: 4
Views: 617

You can always do SHOW CREATE TABLE tblname (for mysql, or similar for database you use) and parse result for column you need...
by jeremicm
14.04.2011, 10:12
Forum: 6.6 - stable
Topic: How to get the Columntypes of a tabel
Replies: 4
Views: 617

ZQuery.Fields[].DataType should do it...
by jeremicm
11.04.2011, 13:40
Forum: 6.6 - stable
Topic: SQLite connect setup
Replies: 2
Views: 585

I don't think you can connect to .db file directly on remote server...