Firebird release strategy for 2015-2016 #fbconf14
We start to publish presentations from Firebird Conference 2014. The first presentation is “Firebird release strategy in 2015-2016“, by Dmitry Yemanov, core Firebird architect
Firebird related news
We start to publish presentations from Firebird Conference 2014. The first presentation is “Firebird release strategy in 2015-2016“, by Dmitry Yemanov, core Firebird architect
Here are his Firebird Conference Jaybird and Jooq presentations + source code:
1:http://prezi.com/jqlzg6rkdhg_/jaybird-status-update/
2:http://prezi.com/-oggns1ehvmv/querying-firebird-with-jpa-and-jooq/
3:https://github.com/mrotteveel/talk2014
You can watch the twitter stream from Firebird Conference 2014 : #fbconf14
Firebird 3 is on the fast track to be released very soon, and all FirebirdSQL developers should help Firebird Project to release v 3.0 as soon as possible.
You can help Firebird in the following areas:
Firebird 3 must be thoroughly tested with real-life databases and applications – with your applications and databases!
Download Firebird 3 Beta 1 now (unofficial installer at the moment) and start testing it.
Join the Firebird 3 Launch campaign
http://firebird3.com/en/start/
| The following video discusses best practices for using the Firebird Trace API and FB TraceManager in high load scenarios. CLICK HERE to watch the ~24 min video. Enjoy! |
More mini-interviews with speakers at Firebird Conference:Jiri Cincura, Roman Simakov, Pavel Cizar and Jonathan Neve
The Lazarus team is glad to announce the release of Lazarus 1.2.6.
This release was built with fpc 2.6.4.
Here is the list of changes for Lazarus and Free Pascal:
http://wiki.lazarus.freepascal.org
http://wiki.lazarus.freepascal.org/Lazarus_1.2_fixes_branch#Fixes_for_1.2.6_.28Merged.29
http://wiki.lazarus.freepascal.org/User_Changes_2.6.4
New version v0.2.0 supports
database.detach() waits for last commandMany thanks to Peter Širka for his contributions to this release
Adriano wrote on Firebird-devel and twitter :
I put in my github account the first version of cloop – Cross Language
Object Oriented Programming.
– https://github.com/asfernandes/cloop
This first version is limited to void and int datatypes, supports C, C++
and Free Pascal, and the makefile works only in POSIX.
Some files in src/tests/test1 are autogenerated. They are flag as this
in their first line.
Tests consists of three (one for each language) executable and three
libraries as well.
The executable is the consumer test part and receives a parameter with
the library name of the supplier test part, so we can test any
combination of C/C++/Pascal as consumer/supplier. Examples:
./output/debug/bin/test1-pascal output/debug/bin/test1-pascal.so
./output/debug/bin/test1-c output/debug/bin/test1-pascal.so
./output/debug/bin/test1-cpp output/debug/bin/test1-pascal.so
./output/debug/bin/test1-cpp output/debug/bin/test1-c.so