Recent

Author Topic: FBConfig FirebirdSQL 2.5 gui config  (Read 6350 times)

Zaher

  • Hero Member
  • *****
  • Posts: 681
    • parmaja.org
FBConfig FirebirdSQL 2.5 gui config
« on: August 03, 2012, 11:24:08 pm »
We release a version 2 of FBConfig, It is open source project to config and edit “firebid.conf” and “aliases.conf” for FirebirdSQL 2.5.

(http://www.parmaja.com/projects/firebirdtools/fbconfig-screenshot1.png)

https://github.com/parmaja/fbconfig/downloads

Please, test it, and report bugs.

otorres

  • Jr. Member
  • **
  • Posts: 94
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #1 on: August 04, 2012, 01:32:53 am »
very nice project, but have a problem in win7 x64, show error load firebird.conf ans aliases.config, can be fixed :
[/code]

    cnfFileName := aFileDir + 'firebird.conf';
    alsFileName := aFileDir + 'aliases.conf'; 
Code: [Select]
Replace for

    cnfFileName := aFileDir + PathDelim + 'firebird.conf';
    alsFileName := aFileDir + PathDelim + 'aliases.conf'; 

Zaher

  • Hero Member
  • *****
  • Posts: 681
    • parmaja.org
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #2 on: August 04, 2012, 01:47:25 am »
Fixed, Thanks a lot :)

New file,
fbconfig-2.0.1-fb-2.5-win32.zip

Also, you can use Bug Tracker at github

Leledumbo

  • Hero Member
  • *****
  • Posts: 8757
  • Programming + Glam Metal + Tae Kwon Do = Me
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #3 on: August 04, 2012, 07:32:40 am »
Quote
cnfFileName := aFileDir + PathDelim + 'firebird.conf';
    alsFileName := aFileDir + PathDelim + 'aliases.conf';
Even better (no problem if somehow aFileDir already contains PathDelim):
Code: [Select]
cnfFileName := IncludeTrailingPathDelimiter(aFileDir) + 'firebird.conf';
    alsFileName := IncludeTrailingPathDelimiter(aFileDir) + 'aliases.conf'; 

Zaher

  • Hero Member
  • *****
  • Posts: 681
    • parmaja.org
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #4 on: August 04, 2012, 01:09:54 pm »
Leledumbo, Yes that's what I did when I fixed it.

JD

  • Hero Member
  • *****
  • Posts: 1848
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #5 on: August 04, 2012, 02:10:11 pm »
Quote
cnfFileName := aFileDir + PathDelim + 'firebird.conf';
    alsFileName := aFileDir + PathDelim + 'aliases.conf';
Even better (no problem if somehow aFileDir already contains PathDelim):
Code: [Select]
cnfFileName := IncludeTrailingPathDelimiter(aFileDir) + 'firebird.conf';
    alsFileName := IncludeTrailingPathDelimiter(aFileDir) + 'aliases.conf'; 

Thanks for the tip. I didn't know one could do it like that.  :D
Windows - Lazarus 2.1/FPC 3.2 (built using fpcupdeluxe),
Linux Mint - Lazarus 2.1/FPC 3.2 (built using fpcupdeluxe)

mORMot; Zeos 8; SQLite, PostgreSQL & MariaDB; VirtualTreeView

otorres

  • Jr. Member
  • **
  • Posts: 94
Re: FBConfig FirebirdSQL 2.5 gui config
« Reply #6 on: August 04, 2012, 07:01:38 pm »
Thx Leledumbo. :)

 

TinyPortal © 2005-2018