Thursday, June 01, 2006

Firebird Ultimate Appliance (Apache + Firebird + Ubuntu Linux + PHP+Flamerobin)

1.Firebird Appliance contains LAMP like kit to easy start programming in php and working with firebird (Two administration tools were included in the virtual machine)

2.Create Ultimate Firebird Vmware Machine (How it was created)

Download vmware workstation or the player
then the ubuntu vmware machine (You need to unzip it on one folder and load it in vmware)

sudo vi /etc/apt/sources.list
decoment the universe lines

and comment the first line (with cdrom)


sudo apt-get update

apt-cache search firebird



sudo apt-get install firebird2-super-server firebird2-examples firebird2-dev firebird2-utils-super ibwebadmin libfirebird2-super

when asked for SYSDBA password put it :masterkey

See if firebird is started:
ps awwx | grep firebird

Load in firefox browser
http://localhost/ibwebadmin/

Write in the "Login to Database" field
/var/lib/firebird2/examples/employee.fdb
And in the password field:masterkey

Go to the sql tab and run this query
select * from employee;
Click on "Execute" button then on "Show Output"

you can tweak the ibwebadmin config
cd /var/www/ibwebadmin/inc

sudo vi configuration.inc.php and change these variables
define('DEFAULT_DB', 'employee.fdb');
define('DEFAULT_PATH', '/var/lib/firebird2/examples/');

Next we will install flamerobin db admin tool:
Go to flamerobin.org -> Download

Choose the lastest released kit flamerobin
http://prdownloads.sourceforge.net/flamerobin/flamerobin-0.7.1-gtk2.tar.bz2?download

tar -jxvf Desktop/flamerobin-0.7.1-gtk2.tar.bz2
rm Desktop/flamerobin-0.7.1-gtk2.tar.bz2
sudo apt-get install make libpng3
cd flamerobin-0.7.1-gtk2
sudo ln -s /usr/lib/libfbclient.so.1.5.1 /usr/lib/libfbclient.so.2
./flamerobin
register the same database as we did for ibwebadmin
Display name: employee example
Database path:/var/lib/firebird2/examples/employee.fdb
Username:SYSDBA
Password:masterkey
Click on "SAVE" then double click on the "employee example" in the left tree

You can click on "Tables -> Select * from ..."




3. Using Firebird Database with debian : there are several documentation links on the web
for python http://jclement.ca/docs/firebird_debian/firebird-debian/
for php http://php.net/ibase
debian small howto http://www.debianhelp.co.uk/firebird.htm

4. flamerobin is under expat http://flamerobin.org/license.html
firebird - IDPL (Mozilla based license)
ubuntu - free to share and modify philosophy

Screenshots




..:: ::..:: ::...:: ::...:: ::...:: ::...:: ::..

Wednesday, May 31, 2006

Various Firebird Database frontends » Bernie’s ramblings…

[flamerobin mention on two sites , on Bernie's blog and debianhelp.co.uk]

flamerobin on IBPhoenix Home page

[time to spread the word about flamerobin 0.7.2 on other sites]

Read more at www.ibphoenix.com/

Monday, May 29, 2006

FreeBSD port

submitted for approval:

http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/95468

Hopefully it will soon go into official ports repository, and maybe we'll have an official platform maintainer in Denis Barov.

..:: ::..:: ::..

FlameRobin 0.7.2 released

Windows (setup & zip), Linux (gtk1 &. gtk2), Mac OS X and source packages are available for download. Read more here, changelog included

..:: ::..:: ::..:: ::..:: ::..:: ::..:: ::..:: ::..

Sunday, May 28, 2006

Monday, May 22, 2006

Friday, May 19, 2006

in top 5 of the most active projects in category sf.net->db frontends

[We are on 5-th place on the source forge trove software map - in the database front-ends category]

Read more at sourceforge.net/softwar...

Tuesday, May 16, 2006

0.7.0 does not work with Firebird 1.0

It seems that FlameRobin 0.7.0 only supports Firebird 1.5 and higher versions.

FB 1.0 is only supported by gtk1 Linux package.

We're looking into fixing this...

..:: ::..:: ::..

creating an flamerobin/firebird live cd [DONE]

follow the guide

https://help.ubuntu.com/community/LiveCDCustomization

in the Customization part (after you do sudo chroot edit)
I decomented the two lines in /etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu dapper universe
deb-src http://archive.ubuntu.com/ubuntu dapper universe

in the /etc/resolv.conf i have added one nameserver we had on our lan (you need to delete it after you finish customizing the distro)
nameserver 127.0.0.1


before installing firebird is a good idea to stop the firebird on your system
then after you chroot do the following

apt-get install firebird2-super-server firebird2-utils-super ibwebadmin firebird2-examples



install the flamerobin from debian

sudo apt-get install libwxgtk2.6-0
wget http://puzzle.dl.sourceforge.net/sourceforge/flamerobin/flamerobin_0.7.2-1_i386.deb
dpkg -i flamerobin_0.7.2-1_i386.deb

At the end when creating the iso , i named it firebird live cd

sudo mkisofs -r -V "$IMAGE_NAME" -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../firebird-dapper-live-i386.iso .

And here is the screen shot















..:: ::..:: ::...:: ::...:: ::..:: ::..

Monday, May 15, 2006

flamerobin mention

in the jedi vcs release notes (scroll down to page 10)
ps: if you don't know what jedi vcs is , Here is their sf.net homepage http://jedivcs.sf.net

..:: ::..:: ::..

0.7.0 (win32 setup) is out

[Ed: the other kits will be done soon ]

In case anybody is able to see this message , then I announce that
0.7.0 (win32 setup) is out.

Let the PR dogs loose.

Ciao
--
Nando Dessena

..:: ::..:: ::..

Wednesday, May 10, 2006

flamerobin/firebird article

[I guess you need google translate or the babel fish]

Read more at www.devmedia.com.br/vis...

Monday, April 17, 2006

Things to fix before 0.7.0 release

Hi all,

as privileges and user management stuff is complete, we're done with
features for 0.7.0. I'd like to get the list of things that need to be
fix/polished before the release.

One of the problems is perhaps AdvancedMetadataSearch dialog. We still
haven't decided what exactly should it look like. Do you guys think that
we can go with 0.7.0 release with it - as it is now? It is completely
functional, just the layout and some other details are probably
different than they should be.

Other thing is StatementHistoryFrame. For the time being, I'd like to
make a modal dialog out of it (select SQL statement from history and
close it). I know how I'd do it when deriving from wxDialog, but I'm not
sure what happens if we're to derive it from BaseDialog. What happens
with "buttons panel and sizer". Perhaps we should leave search box and
search/delete buttons at top, and move "Copy to editor" button to bottom
- and also add "Close" button to it?

I'd also like to know how does PrivilegesDialog look on other platforms,
as I only tested on Linux. I tried on Windows 98 at some point, and it
seemed fine, but I'd like to know about WinXP and Mac.

Please say if there's any other issue as well...

--
Milan Babuskov
http://swoes.blogspot.com/


..:: ::..:: ::..

Sunday, April 09, 2006

Privileges page



Finally, the Privileges page is here.

This is still a work in progress, but you can already look at table and view privileges. The main problem we currently have is that wxHtmlWindow doesn't support TITLE attribute of IMG tag. I wanted to use it to display the grantor (user who granted the privilege) as a tooltip - when you hover the mouse over privilege icon.


..:: ::..:: ::..

FlameRobin license changed

This is the new license used for FlameRobin code:

Copyright (c) 2004, 2005, 2006 The FlameRobin Development Team

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


..:: ::..:: ::..

Friday, April 07, 2006

New FlameRobin password protection



- all passwords(PW) are encrypted with master password (MPW)
- MPW is not saved in any file, it is only known to the user
- PW + MPW => Cipher (cipher is stored in .conf file)
- When PW needs to be decrypted, user is prompted for MPW
- Cipher + MPW => PW

Defense from "known plain-text" attack:

- If the attacker gets a hold on to .conf file and knows one of the PWs
he would be able to compute MPW (Cipher + PW => MPW). In order to prevent
this, we use the following scheme:

- we take MPW+username+full_database_path, and use it as a seed for
some irreversible random number generator (RNG) like ISAAC.
- we use the numbers produced by RNG to encrypt the PW.
- since numbers are unique for each username+full_db_path and RNG is
not reversible, the attacker cannot get MPW, and he also cannot decrypt
any other password.

Information on ISAAC:
http://en.wikipedia.org/wiki/ISAAC
http://www.burtleburtle.net/bob/rand/isaacafa.html


Monday, April 03, 2006

Small niggles with current FlameRobin

Hi guys,

today I took a look at FlameRobin after a few days away from it, and
here are some things I noticed that are not optimal IMO. Maybe you
don't agree, maybe you agree and want to fix/change some of them, maybe
I'll get around to some of them...

Anyway, here goes:

1) All property pages:
- The links on top of the pages jump around when one follows them, and
the link for the current page disappears. I much prefer the way e.g.
SourceForge handles this, with all links always visible in the same
place, with the current page as standard text of the same font. Compare
enabling/disabling controls to hiding them.

2) Database property page:
- The page uses two narrow tables of fixed width, while all other use
expanding tables, stacked vertically. I'd prefer consistency.
- Could the database size be given in MB? Even better would be a
dynamic label (kB/MB/GB)...
- We need a database32.xpm file, current icon is the generic FR one.

3) Advanced Metadata Search frame:
- The layout needs to be improved. It is too large (minimal size on my
system 824x347), to wide for the height (a ratio of about 4:3 would be
ideal), and it is quite confusing. It would also be hard to extend it
(adding more criteria, adding AND/OR combination of criteria, ...). I
don't really have a better layout in mind ATM, but I would like it to be
closer to the backup/restore frame layout: controls in the upper part,
then the action button, then the result list in the lower part.
- The "DDL for selected objects" control shouldn't be there at all,
IMHO. Double click on the result list would open the property page with
the same information (default action for DBH objects, known behaviour
from the tree control).

4) SQL Execution frame:
- SQL History frame should at least stay on top of parent execution
frame, otherwise frame relation is lost when $user switches between
frames. But I doubt that a frame is actually the right design there.
How about a list box left or right of the SQL edit control, with a
splitter, keyboard and drag and drop operations instead of buttons,... ?

Comments, flames and stuff very welcome.

Thanks

--
Michael Hieke




..:: ::..:: ::..

Saturday, April 01, 2006

MySQL AB Acquires Firebird Foundation and Flamerobin

Milan Babuskov one of original creators of fbManager which became Flamerobin, just made it publicly known that he now works for MySQL AB.

My project, Flamerobin and Firebird Foundation , have been acquired by MySQL, AB. As
part of the agreement, I will be working full time for MySQL. I expect
to lurk on the flamerobin-devel list from time to time and may contribute
the occasional wolf-o-gram, but I will not be taking an active part in
Flamerobin development. Although Mariuz will work for MySQL, part time,
translating from wolf to English,He will continue to be active in the
Firebird/Flamerobin projects.

Ann Harrison gave the idea to buy all the firebird developers with this post
on firebird-support

..:: ::..:: ::..:: ::..:: ::..

The New license for flamerobin

By downloading flamerobin you agree to the following disclaimer:

This programme carries no warranties either implied or explicit. Use at your own risk. It was written by me as a personal challenge. It seemed to work when I ran it, but it might not work for you. It might also delete random files, send pornographic pictures to the president, crash you computer or cause space aliens to destroy the planet. Use it at your own risk and remember: if it’s not backed up, it’s not important.


..:: ::..:: ::..