Know how to add execution of SQL-scripts in your programs!

online poker news

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!

New version of FreeAdhocUDF released

Right to the FireBird Conference starting tomorrow in Bremen we uploaded a new version “adhoc 20101111” of FreeAdhocUDF.
There are some importend bugfixes, expanded functions, 11 new functions (totally now 551!) and new support for InterBaseXE 32 und 64bit.

This is a recommended update.
FreeAdhocUDF is the the first (and still the only?) UDF-library with UTF-8 and UNICODE-FSS support.
FreeAdhocUDF is licenced under the LGPL and you can use it without costs also in commercial projects – see licence.
You can download it from ftp://ftp.FreeAdhocUDF.org/FreeAdhocUDF/
Documentation found at http://FreeAdhocUDF.org/index_eng.html – still be updateted in the next days …
For all kind of questions and bug-reports use eMail help@freeadhocudf.org

adhoc dataservice / Christoph Theuring

Announcement :stable version of Firebird driver for the PHP Codeigniter Framework

Carlos wrote on firebird-php group : I’ve developed a stable version of a Firebird driver for the PHP Codeigniter Framework . Good feedback has been received from the Codeigniter community so far, and hope this could be useful for more developers working with PHP and Firebird.The sources are available at bitbucket here and any issues can be reported here
or at my blog here and for the English readers

Thanx, live long and prosper…
Carlos García Trujillo

ps: seems that the driver is quite popular in such a small timeframe

I am happy that my driver for # firebird # codeigniter already are used by people from around the world in so little time:)

FirebirdDB driver for Codeigniter 2.0 is released Finally!

Here is the announcement on Codeigniter Forums

I have developed a FirebirdDB driver for Codeigniter 2.0
you can get it at BitBucket here

Code Igniter seems to be a cool PHP framework

CodeIgniter is most often noted for its speed when compared to other PHP frameworks. In a critical take on PHP frameworks in general, PHP creator Rasmus Lerdorf spoke at frOSCon in August 2008, noting that he liked CodeIgniter “because it is faster, lighter and the least like a framework”.

Do you use TIME and TIMESTAMP in your applications? The new IBProvider version will further simplify your work!

Have you ever lost microseconds when working with the type TIME?
Definitely, if you have ever tried to use them. In the previous versions of IBProvider, time was stored in OLE DB structure of DBTYPE_DBTIME type that does not support fractions of a second.


In the new IBProvider version, time data types have been improved
. The new properties dbtime_rules and dbtimestamp_rules allow to set time storage not only in DBTIME/DBTIMESTAMP but also in WSTR and in the new type of MS SQL 2008 – DBTIME2 without losing milliseconds.


Please, read more and download new IBProvider Professional right now: Download Firebird OLE DB driver.

#Lua Firebird Driver : fbclient 0.5.0 is released

Cosmin Apreutesei wrote to to Lua, firebird-tools, LuaRocks mailing lists :

Good news everyone,

Firebird’s Lua binding v0.5.0 is out!

Quick changelog:

  • improved automated testing suite:
  • now testing against all 2.0-2.5 firebird and fbembed releases to date on win32 and linux32 (linux64 coming with the next version of alien)
  • server binary bundles including start/stop scripts are now available for download making it trivial to setup a testing environment
  • improved st:run()/st:fetch() handling based on statement type
  • added support for SQL_NULL type (fb 2.5+)
  • added at:sqlcode(), at:sqlstate(), at:sqlerrors(), at:errors(),at:full_status()
  • added at:start_transaction()
  • added st:row()
  • bug fixing, refactoring and documentation updates

Rockspeck and zip package here: http://code.google.com/p/fbclient/source/browse/

The next version will include a reflection module for metadata export
and schema comparison and synchronization between two databases.

Feedback welcome!
Enjoy!

PS: Could someone please update the rockspec in the LR repo, thanks!

#Delphi , #Lazarus : UIB 2.5 is optimized to fully exploit Firebird 2.5

There was no major release since a long time,but the project has always been maintained for 7 years now.
In honor of the new version of Firebird, I decided to release this new version of UIB in 2.5.
There have been many changes to support Unicode for Delphi 2009 to XE.
UIB is optimized to fully exploit Firebird 2.5.

http://www.progdigy.com/?p=149

ps: if you don’t know what UIB is ,  here is the description (archive.org link)
http://www.progdigy.com/?page_id=5

current page for UIB is https://github.com/hgourvest/uib

 

1 70 71 72 73 74 147