Search found 278 matches

by gto
25.05.2009, 13:08
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28187

Olá pessoal! Eu estou com um problema já algum tempo, com D2009 e Zeos, eu ja tentei de varias formas solucuinar. Eu tento instalar o Zeos 7 no meu Delphi 2009 e depois da instalação, não aparece os componentes, vou no menu Component -> Install Component ... olho o Zeos aparece lá clico no botão co...
by gto
19.05.2009, 11:54
Forum: 6.6 - stable
Topic: TZConnection connect failure
Replies: 4
Views: 818

That's normally caused by a lost libmysql.dll in your system, porbably an outdated one. Try to find all libmysql you have in the system and concentrate them in only one place (system's dir or your app's dir). When testing in designtime/runtime you get another complication. In runtime, the library wi...
by gto
18.05.2009, 16:21
Forum: 6.6 - stable
Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
Replies: 5
Views: 738

I can compile OK if I leave zeos.inc alone, but it fails if I comment out DBMS I don't need (MySQL, PostgreSQL, etc.) and only keep Firebird: ZInterbaseToken.pas%u2861%u29%u3a F1026 File not found%u3a 'ZPostgreSqlToken.dcu' //This line%u3a uses Classes, ZTokenizer, ZGenericSqlToken, ZPostgreSqlToke...
by gto
15.05.2009, 17:22
Forum: 6.6 - stable
Topic: [D2009/ZParseSql] File not found: 'ZPostgreSqlToken.dcu'
Replies: 5
Views: 738

I removed the whole directory, redownloaded the Stable version, didn't edit src\zeos.inc: ZCore and ZParseSQL compile OK, but I get errors when compiling Zplain: [DCC Error] ZPlainPostgreSqlDriver.pas(1005): E2010 Incompatible types: 'AnsiChar' and 'Char' [DCC Error] ZPlainPostgreSqlDriver.pas(1018...
by gto
15.05.2009, 11:58
Forum: User Patches
Topic: [patch_done] Another Patch for ZConnection
Replies: 3
Views: 606

Re: Another Patch for ZConnection

Currently the Delphi compiler throws a hint that the assigned return value for ExecuteDirect is never used. By modifying function TZConnection.ExecuteDirect(SQL:string; var RowsAffected:integer):boolean; var stmt : IZStatement; begin result := False; CheckConnected; stmt := DbcConnection.CreateStat...
by gto
14.05.2009, 19:13
Forum: User Patches
Topic: :?: Patch for ZConnection.Connect
Replies: 13
Views: 3268

Leaving my 0.05 cents: The original behaviour was designed to keep the typed settings just into the login procedure and don't propagate them through ZConnection properties. The patch from Ostfriese make it save the typed user and password over the ZConnection values, right? Well, if this is a securi...
by gto
22.04.2009, 17:06
Forum: MySQL
Topic: Oracle buys Sun (MySQL too!)
Replies: 3
Views: 515

Sorry for the "semi-offtopic" :)

Currently, Oracle said that MySQL will be the same as we know, but I have my particular fears that, somehow, they drop support for some of adavanced features on MySQL to promote Oracle.

Wait and see!
by gto
20.04.2009, 17:07
Forum: MySQL
Topic: Oracle buys Sun (MySQL too!)
Replies: 3
Views: 515

Oracle buys Sun (MySQL too!)

As you may know by know, Oracle buyed Sun by U$ 7.4 Mi, which is the house of MySQL. http://www.sun.com/third-party/global/oracle/index.jsp http://www.oracle.com/sun/index.html The Oracle only spoke this about MySQL: hat does Oracle plan to do with MySQL? MySQL will be an addition to Oracle’s existi...
by gto
17.03.2009, 12:41
Forum: Firebird
Topic: problem with updating ZConnetion
Replies: 1
Views: 503

Have you tried set the TransactionIsolationLevel to tiReadCommited, in TZConnection ?
by gto
17.03.2009, 12:39
Forum: Other 6.x Versions
Topic: How Protect The properties: User Password Database HostName
Replies: 2
Views: 2739

The best method you can go is to encrypt these properties anywhere you want (registry, inifile, config file) and load them at runtime. Well, sorry for the question, but you're tying to protect the connection details from your team? kinda wired.. Maybe if you use a local server, with a known connecti...
by gto
17.03.2009, 12:36
Forum: 6.6 - stable
Topic: execSql certified execution
Replies: 6
Views: 929

You can always use the ExecuteDirect method from TZConnection, which will not raize any errors, but have a boolean return, which will be false if anything goes wrong.
by gto
09.02.2009, 20:24
Forum: 6.6 - stable
Topic: +++ Parallel Transaction / PrepareTransaction() ? +++
Replies: 16
Views: 1868

I've used MDO a long time ago, but I did remember that feature. And other libs use this, too. Let's see if I undertood correctly: TZConnection will have a TZTransaction property, where you can configure things abour transactions, and this will enable retro-compatibility for those people who don't me...
by gto
16.01.2009, 12:07
Forum: ZeosLib 7.0 Beta Forum
Topic: Zdbc120.bpl not found
Replies: 13
Views: 1673

Re: solution

thank you for all your help! I found the solution: Delphi does not search in any path-directory for bpl's. bpl's must be stored or copied to the /bin folder of delphi installation. christian That solved your problem, but it's not true. Delphi 2009 actually searches in /bin folder (which is current ...
by gto
08.01.2009, 14:38
Forum: 6.6 - stable
Topic: Is SVN repository avalailable
Replies: 2
Views: 343

try this: svn://zeos.firmos.at/zeos
by gto
08.01.2009, 12:27
Forum: MySQL
Topic: ZQuery execute sql
Replies: 6
Views: 1392

not ZQuery but ZSQLProcessor ;)