Search found 278 matches

by gto
01.09.2008, 12:19
Forum: User Patches
Topic: default translation of the Portuguese Brazil
Replies: 1
Views: 485

by gto
01.09.2008, 12:16
Forum: User Patches
Topic: translation of the Portuguese Brazil zeos official sources
Replies: 2
Views: 550

Hello Edson :) I've added you at MSN ;) Take care where you post your messages. This forum is indeed to handle patches that users write. By the way, here goes a quick'n'dirty guide to get your Zeos messages in portuguese. -- Para traduzir as mensagens que o Zeos gera, você tem que editar o arquivo s...
by gto
01.07.2008, 16:28
Forum: Other 6.x Versions
Topic: 6.6.2rc dll files
Replies: 3
Views: 3013

I think when you install postgresql, it will install the DLLs too, you only need to copy them (from PG bin's folder or system32 folder, don't remember)
by gto
27.06.2008, 01:34
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Computed Column problem
Replies: 13
Views: 2319

I don't remember 100%, but iirc it goes smt like this: You need to associate the UpdateSQL with the Query (there's a property in Query for that). Then you set up the UpdateSQL sql properties like so (for example): ZUpdateSQL1.InsertSQL.Text := 'INSERT INTO Table1 (DINDEX,DNAME,DNUMBER) VALUES(:DIND...
by gto
26.06.2008, 15:43
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Computed Column problem
Replies: 13
Views: 2319

You can always use the UpdateSQL component
by gto
26.06.2008, 15:37
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Help on Install the Components
Replies: 1
Views: 1409

Welcome Puccini ! I think you'll need to put this "build" folder in the library path Additionally, you may want to look in these posts: http://zeos.firmos.at/kb.php?mode=article&k=13 http://zeos.firmos.at/viewtopic.php?t=778&highlight=builder http://zeos.firmos.at/viewtopic.php?t=9...
by gto
25.06.2008, 13:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Working on TZCollection.Error ASM code
Replies: 4
Views: 1463

Well, here goes the patch. I don't have lazarus here, then I ask someone to test it. But should be OK. Index: ZCollections.pas =================================================================== --- ZCollections.pas (revision 382) +++ ZCollections.pas (working copy) @@ -270,13 +270,19 @@ } class pro...
by gto
24.06.2008, 19:43
Forum: Other 6.x Versions
Topic: [patch_done] Zeos 6.6.2-rc + Oracle 10g + Stored procedures
Replies: 13
Views: 6141

Hello willianjhonnes!

Please, post a demo program with the database creation SQL, if possible (or, at least, one of the procedures you're having problems).

Stored Procedures are very DB dependent, and also is the implementation in Zeos.

Thank you!
by gto
18.06.2008, 18:07
Forum: Firebird
Topic: Problem with zeos 6.6.1+ delphi 7+firebird 2.1
Replies: 3
Views: 1277

¡Ah! Por el Firebird Embedded, elimina esa opción HostName. Prueba cambiar el nombre de la DLL original de firebird embedded (ñ de firebird normal) para firebird d .dll Y eleger el protocolo firebird d -2.0 en TZConnection english For firebird embedded, remove that option in HostName and try to chan...
by gto
18.06.2008, 16:28
Forum: Firebird
Topic: Problem with zeos 6.6.1+ delphi 7+firebird 2.1
Replies: 3
Views: 1277

Hello pmtzg ! Your error is probably caused by the way firebird 2 connects to databases. Try setting the server property of TZConnection to 127.0.0.1 (in case of the server is you own machine). It should work :) Concerning the DLLs, is better you place them only at the folder of your application. If...
by gto
17.06.2008, 14:22
Forum: User Patches
Topic: [patch_done] ZMessages "SInvalidUpdateCount" trans
Replies: 0
Views: 721

[patch_done] ZMessages "SInvalidUpdateCount" trans

Minor translation: Index: ZMessages.pas =================================================================== --- ZMessages.pas (revision 380) +++ ZMessages.pas (working copy) @@ -220,7 +220,7 @@ SUnKnownParamDataType = 'Param.DataType é de tipo desconhecido'; SFieldReadOnly = 'O campo %d é somente le...
by gto
16.06.2008, 21:32
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Working on TZCollection.Error ASM code
Replies: 4
Views: 1463

BUT we can say : if Delphi, let Delphi handle it (or keep it like it is now). If FPC -> use the fpc way, I think. That way it's fpc who takes care of the environment/processor specific way of handling this.
Hum!
Good point!

Anyone more?
by gto
16.06.2008, 19:04
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Working on TZCollection.Error ASM code
Replies: 4
Views: 1463

Working on TZCollection.Error ASM code

Hello! As I'm seeing these days, people have some problems with the assembly code in TZCollection.Error, which raises an error at the calling address. ASM code in a multi-platform component isn't the best thing in the world, so I've did some research to find how eliminate it, or at least if it's pos...
by gto
16.06.2008, 14:17
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Install problem on Lazarus
Replies: 18
Views: 3665

mdaems wrote:gto,
I think Henri means you should use Result := PtrInt(Self) instead of Result := LongInt(Self) and declare PtrInt for the non-fpc compilers as a longint.
This way fpc64 uses an Int64 and all other compilers a longint.

Mark
AH! Right ;)
didn't get it from first time ;)
by gto
13.06.2008, 17:21
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Install problem on Lazarus
Replies: 18
Views: 3665

Dr Mac, You should used PtrInt datatype instead of Int64 for transtyping. {$IFNDEF FPC} PtrInt = longint; {$ENDIF} herni Well, as I already said, I'm no expert in 64-bits platform, but the previous code used LongInt and it didn't worked, 'cause LongInt is 32 bits and theses changes take portions of...