Search found 8 matches

by Lightning
05.09.2005, 22:16
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: How to return the error codes of the PostgreSQL server?
Replies: 6
Views: 3790

I use Error detection with Firebird and i assumed it would work with MySQL and PostGres also.
by Lightning
04.09.2005, 15:42
Forum: Firebird
Topic: datapump from Pradox to Firebird with ZEOS
Replies: 2
Views: 2057

You could use Zeos and a BDE Query/Table to migrate your data, should work fine, the simplest way would be to browse the table line by line, another option would be to use Delphi's tools and install FB ODBC driver, you may also find useful migration tools at ibphoenix website, if you want to migrate...
by Lightning
03.09.2005, 10:35
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Protocol x libpq.dll
Replies: 10
Views: 3663

Renaming is a sollution. I think Zeos is not updated yet for version 8x of PG lib, you should try 74 with the 8x server, i am not currently using PG but i remember this was the sollution. The docs seem to be few, the old website was lost :( You can find some here http://seegernet.koolhost.de/zeosfor...
by Lightning
02.09.2005, 07:54
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: How to return the error codes of the PostgreSQL server?
Replies: 6
Views: 3790

This should work with all protocols:

[php]try
somecode ..
except
on E: EZSQLException do
begin
E.ErrorCode // Do something with ErrorCode
E.MEssage // Do something with Message
end;
end;[/php]
by Lightning
02.09.2005, 07:23
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Protocol x libpq.dll
Replies: 10
Views: 3663

The protocol is used to determine what database type/server to use, that is also the dynlib if it changes in time.
Try to get all the possible docs for info on many features.

You should check your lib subdir for possible dynlibs(dlls).
by Lightning
30.08.2005, 12:43
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Zeos Controls and Zeos DBO
Replies: 13
Views: 3866

I have converted some of the controls long time ago i was mostly interested in the ZFindDialog but i also have ZParser, ZHexGrid and ZDataGrid, i will have a look at them and they will probably be uploaded somewhere for everybody to download, they do not work in Lazarus as i didn't even know it exis...
by Lightning
30.08.2005, 12:23
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Frequently CVS-Builds for downloading - voting closed -
Replies: 4
Views: 8469

From my personal experience with cvs, cvs seems verry ugly to the new users but it's actually verry easy to use and has various features (like svn), CVS also reduces load on the servers by downloading only the necessary files, it does take longer when using checkout but people can stay up-to-date wi...
by Lightning
30.08.2005, 09:48
Forum: 5.x Versions
Topic: Upgrade to 6.1.5
Replies: 7
Views: 5557

I have done it the hard way, backup your old comps and sources. Open the pas and dfm files with notepad form the old and a new test project. Use mass replace to fix everything you need. Or simply open the old project and tell Delphi to keep your old comps, add the new ones, connect them and just fix...