blackfish

Blackfish SQL management tools

I started to use Blackfish, but I missed having a good and evolved manager. Is there something already? To help us manage the database and its tables? Thanks ...

What about blackfish database

I have posted a question about database selection for small projects, but no one selected or mentioned Blackfish. I am using it for a while and I like it, to some point better than SQLserver. Id like to know other experiences with it, problems, limitations, tools to manage it being built. ...

How can I use Integer Auto Increment Field in DBx4 with BlackFish ?

I am trying to use auto incremental fields in dbx4 with a black fish database I have a simple table Structure: CREATE TABLE tblTABname ( ID int AUTOINCREMENT Primary Key, Description varchar(100) NOT NULL ); Before Open I am doing the : qryTAB.FieldByName( ‘ID’).AutoGenerateValue := arAutoInc; cdsTAB.FieldByName( ‘ID’).Au...

SQLite or Blackfish - what should I use with a delphi Application ?

I am thinking about using SQLite It is a self-contained, server less, zero-configuration, transactional SQL database engine and is open source. Will I gain anything by using Blackfish instead of SQLight ? ...

How can I access Blackfish for Windows over JDBC?

For Blackfish for Windows which is included in Delphi 2009 I would like to write a Java client and use a JDBC connection. If I understand correctly, this is supported: http://edn.embarcadero.com/de/article/36851 The database clients and servers are interchangeable. Windows clients can connect to Java servers and Java clients ca...

How can I do multi Transaction in DBExpress

I am using DBExpress with blackfish. How can I do multi Transaction? I have several GRIDs all in editing at once and all will have to be saved at once. The begin editing and post are to be determined by the end user, as he works, and in different place of the application, so difficult to do in one only transaction. UPDATE: OK the pr...