Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

Firebird is a relational database offering many ANSI/ISO SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production ... [More] systems, under a variety of names, since 1981. Firebird is a commercially independent project of C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000. Join the Firebird Foundation The software is completely free of any registration, licensing or deployment fees. It may be deployed freely for use with any third-party [Less]

4.58333
   
  1 review  |  100 users  |  3,724,378 lines of code  |  17 current contributors  |  Analyzed 8 days ago
 
 

The ZeosLib is a set of database components for MySQL, PostgreSQL, Interbase, Firebird, MS SQL, Sybase, Oracle and SQLite for Delphi, FreePascal/Lazarus, Kylix and C++ Builder. It connects to the chosen database using its native API, so no database middleware (eg. BDE) is needed.

4.4
   
  0 reviews  |  52 users  |  288,493 lines of code  |  3 current contributors  |  Analyzed 11 minutes ago
 
 

The goal of project is to provide framework to develop information systems in Ada. It provides Unicode support, localization, persistent settings, URI/IRI manipulation, XML reader/writer, XML Catalogs resolver, FastCGI/SOAP/WSDL, SQL database access (InterBase, MySQL, Oracle, PostgreSQL, SQLite). ... [More] It also provides support to process UML models, useful to develop model driven tools, like code generators. [Less]

5.0
 
  0 reviews  |  6 users  |  1,923,118 lines of code  |  4 current contributors  |  Analyzed 1 day ago
 
 

FBSQL Project Goalsfbsql aims at easing the use of Firebird and Interbase databases by providing clean client-libraries for different languages. The raw Firebird/Interbase-API is very awkward and hard to work with, while fbsql is easy and straight-forward like for example the sqlite- and mysql-APIs ... [More] are. Currently C and Lisp are supported. fbsql uses IBPP, a C++ Interbase/Firebird API for it's implementation. It's basically just a thin wrapper around IBPP to make it accessible in C, and therefore in any other language. Supported PlatformsCurrent Linux with GCC, Windows with mingw and Windows with Microsoft Visual Studio 2005 are tested. The code is rather portable, so I believe on every platform where the firebird client-library and IBPP are accessible, fbsql will work, too. As for the Lisp-library, I've only tested it with CLISP on Linux, yet. Again, this should be rather portable to most Lisp-implementations and platforms, too. Example CodeHere's an example C-code which connects to a database and selects the IDs of the table "test": #include "fbsql.h" #include #include int main() { struct fbsql_database *db; struct fbsql_transaction *tr; struct fbsql_statement *st; int id; db = fbsql_database_new("localhost","/pub/firebird/Test1.fdb","sysdba","5735","","iso8859_1",""); fbsql_database_connect(db); tr = fbsql_transaction_new_with_defaults(db); fbsql_transaction_start(tr); st = fbsql_statement_new(db,tr); fbsql_statement_prepare(st,"select id from test"); fbsql_statement_execute(st); while(fbsql_statement_fetch(st)) { if( fbsql_statement_get_integer(st, 1, &id) ) printf("ID: NULL\n"); else printf("ID: %d\n",id); } fbsql_statement_close(st); fbsql_statement_delete(st); fbsql_transaction_rollback(tr); fbsql_transaction_delete(tr); fbsql_database_disconnect(db); fbsql_database_delete(db); return 0; }DownloadI've added a "Sneak-Preview" download today, that's the base of what will be the first release. It should already be pretty usable, basic tests all worked out. Check it out at the download-page! [Less]

0
 
  0 reviews  |  0 users  |  14,078 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

XUL browser for Firebird and Interbase databases

0
 
  0 reviews  |  0 users  |  36,834 lines of code  |  0 current contributors  |  Analyzed less than a minute ago
 
 

small module for simplify working with Firebird database from python

0
 
  0 reviews  |  0 users  |  71 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.