fb_adapter gem for #Ruby on #Rails is updated to fix doc generation
There was a small issue on building and installing the adapter and now is fixed. 0.5.10 version is now checked in and pushed to RubyGems.org.
Announced Via twiter
Firebird related news
There was a small issue on building and installing the adapter and now is fixed. 0.5.10 version is now checked in and pushed to RubyGems.org.
Announced Via twiter
Exclusive Christmas performance 😉
I hope the guys will enjoy it!
Band is:
Drums: Alex “Bonham” Peshkov
Guitar: Vlad “Vai” Khorsun
Guitar: Claudio “Friedman” Valderrama
Bass: Adriano “Harris” Fernandes
Vocal: Dmitry “Plant” Yemanov
Hi,
dbExpress Driver for Firebird version 27 has released. Here are the
fix:
4.1.2007.27 / 4.1.2009.27 / 4.1.2010.27 / 4.1.2011.27 Release on 27
1. Add support to return Views name
2. Support Delphi XE and Firebird 2.5
—
Best Regards,
Chau, Chee-Yang
Here are some patches and the discussion on firebird-devel list , if you spot any issues/bugs please ask on the list
Sean Leyne announced in the Firebird-General discussion list, that the Firebird official web site, the tracker and wiki will be offline on next sunday, November 28th, between 14:00 and 17:00 GMT, due to network maintenance.
Philippe Makowski announced :
Firebird 2.5 rpms are in Fedora rawhide (Fedora 15), on EPEL6 beta for
RHEL6 and future Centos6
https://admin.fedoraproject.org/pkgdb/acls/name/firebird
For Fedora 14 (the actual stable Fedora) I made a private repository here : http://repos.fedorapeople.org/repos/makowski/firebird/
Firebird .NET provider team is proud to announce next version of ADO.NET provider for Firebird – 2.6.0.
Do you want to enable execution of SQL scripts in your programs and spend less time for exhausting coding?
Do you want to create a table, a generator and a trigger, to add data to the table, to make data selection and then to delete all this in one command? For example:
set autoddl on;
set transaction;
create generator GEN_ID_TEST_TABLE;
create table TEST_TABLE (ID INTEGER NOT NULL PRIMARY KEY,TEXT BLOB SUB_TYPE TEXT);
create trigger BI_TEST_TABLE for TEST_TABLE
before insert
as
begin
if(NEW.ID IS NULL) then NEW.ID=GEN_ID(GEN_ID_TEST_TABLE,1);
end;
insert into TEST_TABLE (text) values('record 1');
insert into TEST_TABLE (text) values('record 2');
set term !!;
select * from TEST_TABLE!!
set terminator ;!!
TEST_TABLE;
set autoddl off;
drop table TEST_TABLE;
drop generator GEN_ID_TEST_TABLE;
commit;
Now it is possible with new IBProvider! IBProvider v.3.3.0.11117 allows to run a command with several SQL queries (SQL scripts).
Read more right now:
Know how to add execution of SQL-scripts for Firebird and Interbase in your programs!
From Jiri’s blog
Remember the challenge I did some time ago with .NET provider for Firebird and MonoTouch? Well because I’ve got access to previews of MonoDroid, why not to try the same here?
Some Firebird Tricks for today
I’m a webmaster amongst other things for a significant web hosting provider.
I wanted to share some code and tricks I come across to pretend I’m knowledgeable, remember to not forget what I’ve learned and because I’m a little jealous of my colleague’s awesome blog.