Search found 29 matches

by bravecobra
16.04.2010, 02:58
Forum: Feature Requests
Topic: Live Monitor
Replies: 3
Views: 1843

I'll see whether I can cook up something that could work. In my opinion a TComponent argument could suffice. When unknown, just pass nil. Sometimes you want to log something that's not even component related.
Not breaking existing programs can be done by using an overloaded one.
by bravecobra
16.04.2010, 02:52
Forum: ADO
Topic: ADO+MSSQL2K+NamedPipes
Replies: 4
Views: 1862

TCPIP connections are not enabled by default if I remember correctly. You can enable it with the "SQL Server Network Utility" which should be be in your menu.
Here's a screenshot of my SQL2K with TCP/IP connections enabled. It too is a SQL 2k Dev Edition
by bravecobra
10.04.2010, 18:50
Forum: ADO
Topic: ADO+MSSQL2K+NamedPipes
Replies: 4
Views: 1862

What's holding you back from using TCP/IP instead of named pipes? That should make life a lot easier.
by bravecobra
06.04.2010, 14:29
Forum: MySQL
Topic: Can't connect to remote MySQL DB
Replies: 2
Views: 1011

Seems like a MySQL issue. MySQL can have multiple users with the same name, but for different hostname for its clients. The user root@localhost is not the same as root@% or root@myhostname. The % stands for "any host". This is setup to allow only certain clients to connect. I'm guessing My...
by bravecobra
05.04.2010, 18:59
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28178

In D2010, I remove the BPL and DCP output paths in each package before compiling. That makes the bpl's and dcp's end up in the default directory, which is known by the IDE by default. Just make sure you only have one version of the bpl's and dcp's on your system, otherwise you'll get "weird&quo...
by bravecobra
05.04.2010, 17:59
Forum: Feature Requests
Topic: Live Monitor
Replies: 3
Views: 1843

To give you an idea of what it can do, here's a picture of this live logging. Messages are being added when they occur.

Unfortunately I can't get to the values of the params and the names of the components that triggered the execution, since I don't have those in TZLoggingEvent.
by bravecobra
05.04.2010, 13:18
Forum: ZeosLib 7.0 Beta Forum
Topic: Delphi 2010, Zeos 7 and parameters
Replies: 6
Views: 2527

What's the revision of your svn checkout?
by bravecobra
05.04.2010, 13:16
Forum: ZeosLib 7.0 Beta Forum
Topic: Params Empty MySQL 5-Delphi 2010-Zeos 7
Replies: 4
Views: 792

Since this resembles my experience perfectly...there is/was a bug concerning D2010 since widestrings are used there to pass param values instead of ansistrings. I provided the patch here: http://zeos.firmos.at/viewtopic.php?t=2659. It has been commited to the trunk as rev 770, so you can update your...
by bravecobra
04.04.2010, 17:46
Forum: Feature Requests
Topic: Live Monitor
Replies: 3
Views: 1843

Live Monitor

Hi, I'm trying to implement a live monitor for ZeosLib. Instead of writing to a file, like the current monitor does, I want to broadcast the message, for another application to pick up. A great example is the dbmon application that DevArt uses. Even better would be to implement their interface (we w...
by bravecobra
04.04.2010, 12:18
Forum: Documentations
Topic: Doxygen daily builds back online
Replies: 1
Views: 2585

Doxygen daily builds back online

The daily builds of the doxygen documentation are back online. They've been (unknowingly) offline for a while. Furthermore, the daily builds now reflect the content of the trunk of zeos instead of the testing branch. That should give a more accurate view of the current status of the project. The lin...
by bravecobra
26.01.2010, 22:57
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Delphi 2010 + MySQL + UTF8
Replies: 51
Views: 13526

You may a point there. I personally think we need a compiler directive there as well setting it as a Unicode string instead of a widestring. You may want to get the latest SVN version, as we recently had an issue with unicode parameters as well.
by bravecobra
20.01.2010, 20:16
Forum: ZeosLib 7.0 Beta Forum
Topic: Error in Post Zquery
Replies: 4
Views: 707

What Delphi version are you using?
by bravecobra
20.01.2010, 20:13
Forum: ZeosLib 7.0 Beta Forum
Topic: ZDbcMySQLStatement and Unicode parameters
Replies: 4
Views: 791

Tnx, at least that would make my framework work under Delphi 2010 :)
by bravecobra
16.01.2010, 17:41
Forum: ZeosLib 7.0 Beta Forum
Topic: ZDbcMySQLStatement and Unicode parameters
Replies: 4
Views: 791

ZDbcMySQLStatement and Unicode parameters

Hi, in the current SVN repository is still an issue when using parameterized queries. When a parameter is being detected as stUnicodeString, then the PrepareSQLParam does not detect that (the case statement doesn't handle stUnicodeString). I've attached the patch. Maybe we want to handle compiler ve...
by bravecobra
03.04.2009, 00:54
Forum: MS SQL Server
Topic: how to connect the ms sql server 2K on ubuntu system?
Replies: 18
Views: 7571

Any results on this issue?