Metadata-Version: 1.0
Name: firebirdsql
Version: 0.4.2
Summary: Firebird RDBMS bindings for python.
Home-page: http://github.com/nakagami/pyfirebirdsql/
Author: Hajime Nakagami
Author-email: nakagami@gmail.com
License: BSD
Description:  firebirdsql package is a set of Firebird RDBMS bindings for python.
        It works on Python 2.4+ (include Python 3.x).
        
        import firebirdsql
        conn = firebirdsql.connect(dsn='localhost/3050:/foo/bar.fdb', 
                                                user='nakagami', password='secret')
        cur = conn.cursor()
        cur.execute("select * from baz")
        for c in cur.fetchall():
            print(c)
        conn.close()
        
Keywords: Firebird
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: BSD License
