Search found 51 matches

by barko
09.06.2006, 14:17
Forum: Bug Reports
Topic: [bug_fixed] svn rev. 59
Replies: 1
Views: 1444

[bug_fixed] svn rev. 59

Latest svn rev. 59 has problem with some file names on linux. I have changed this files, to compile on lazarus for linux normal: plain/ZPlainMySql320.pas ({$I ZPlainMysql.inc}) <- changed from old {$I ZPlainMySql.inc} plain/ZPlainMySql323.pas plain/ZPlainMySql40.pas plain/ZPlainMySql41.pas plain/ZPl...
by barko
10.04.2006, 22:44
Forum: ZDBC (ZEOS Database Connectivity)
Topic: Installing Zeos in Lazarus
Replies: 3
Views: 6144

Upgrade from 2.0.2 to 2.0.3 fpc: for windows: unpack fpc.zip to "anywhere" go to "anywhere"\fpc directory and select all go to c:\lazarus\fpcsrc and paste open command line (cmd) and use this command: go to c:\lazarus\fpcsrc 1. make all clean 2. make install INSTALL_PREFIX=c:\laz...
by barko
10.04.2006, 22:29
Forum: ZDBC (ZEOS Database Connectivity)
Topic: Installing Zeos in Lazarus
Replies: 3
Views: 6144

1. Download this copy of zeosdbo (source is from svn - test branch). 2. Download lazarus for your system (windows/linux). 3. Unpack zeosdbo. 4. start lazarus 5. Use: Open Package File (.lpk) from Components menu 6. go to zeosdbo/packages/lazarus 7. select all .lpk files and press open 8. press compi...
by barko
05.04.2006, 15:01
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo from cvs, lazarus and fpc
Replies: 36
Views: 11215

use FPC 2.0.3 (from svn) and/or FPC 2.1.1 (from svn) lazarus 0.9.14 is builded with 2.0.2.
by barko
14.03.2006, 15:51
Forum: Other 6.x Versions
Topic: Who knows...
Replies: 8
Views: 4993

firmos, thanks for svn address...
by barko
12.03.2006, 18:37
Forum: Other 6.x Versions
Topic: Who knows...
Replies: 8
Views: 4993

From where can I fetch SVN version of zeosdbo?
by barko
11.03.2006, 13:21
Forum: Off Topic
Topic: Examples
Replies: 3
Views: 5466

Use gsec tool for user managment. Is in firebird bin directory.
by barko
10.03.2006, 18:45
Forum: Other 6.x Versions
Topic: Who knows...
Replies: 8
Views: 4993

As I know, this bug is only on fpc port of zeosdbo. There is something... on write to db is date changed to bad date format... and there is no other versions for fpc than zeosdbo_rework. I use in my program dirty trick. dates are in varchars, and their numbers are in float field or other float field...
by barko
10.03.2006, 13:01
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo from cvs, lazarus and fpc
Replies: 36
Views: 11215

Yes. :) and No... date is ok if you only looking at it... but... if you change it, then is not ok.

this is zeosdbo bug (i think) and not fpc

we are to quick ;)
by barko
10.03.2006, 12:25
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo from cvs, lazarus and fpc
Replies: 36
Views: 11215

try this version of lazarus and fpc: ftp://ftp.de.freepascal.org/pub/lazarus ... -win32.exe
by barko
09.03.2006, 12:09
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo from cvs, lazarus and fpc
Replies: 36
Views: 11215

from 09.03.2006 on is zeosdbo useable on fpc 2.1.1 (latest from svn) again :)
by barko
19.02.2006, 20:58
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Create DATABASE on Selected Server
Replies: 2
Views: 876

This is the way: procedure TMainForm.FormCreate(Sender: TObject); begin db.Database:='~/kejpaje.gdb'; db.User:='sysdba'; db.Password:='masterkey'; if not FileExists(db.database) then begin db.Properties.Add('createnewdatabase=create database '''+db.Database+''' user ''sysdba'' password ''masterkey''...
by barko
19.02.2006, 20:56
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Check the existance of a TABLENAME
Replies: 10
Views: 4654

I do this: try Table.Close; Table.SQL.text:='select * from mynewtable where id=:id'; Table.ParamByName('id').AsString:='bla'; Table.Open; except // no table found... do create table... Table.Close; try Table.SQL.text:='create table mynewtable...'; Table.ExecSQL; ... except end; end;
by barko
09.01.2006, 00:57
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Questions to get Zeos to work on FPC/Lazarus again
Replies: 3
Views: 973

Re: Questions to get Zeos to work on FPC/Lazarus again

Loesje wrote:Hi all,
please commit the attachet patch, it will make Zeos compile on Lazarus again.
I have created patch for zeosdbo_rework weeks ago..but is not commited to cvs... yet... look here