Blackfish SQL

by john 8/28/2007 12:36:00 AM

Blackfish SQL is a new database from [CodeGear], written totally in managed code. It comes in 2 flavors, local and remote. The local version runs in process, so it makes for really easy deployment. For ASP.Net applications you just deploy the Blackfish assemblies and stick your database file in the App_Data directory.

For a dotnet developer writing stored procedures can be a bit of a problem, this is not the case with Blackfish since you can develop them in your dotnet language of choice, In my case thats Delphi. In the screen shot below I am in the debugger stepping through a stored procedure. I think this is extremely cool...

 
 

Currently rated 1.0 by 2 people

  • Currently 1/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Delphi | Blackfish | Highlander | Betablogger | ASP.Net 2.0 | CodeGear

Related posts

Comments

8/30/2007 8:54:13 AM

http://

Compared to any DB native language, writing stored procedures this way looks a very tedious task - you have to declare and code everything.


In PL/SQL you would just write


PROCEDURE INSERT_BOOKMARK(ATITLE IN VARCHAR..., ABOOKMARK_ID OUT NUMBER)


IS


BEGIN


 INSERT INTO BOOKMARKS(BOOKMARK_ID, TITLE...


 VALUES(SEQ_BOOKMARKS.NEXTVAL, ATITLE...)


 RETURNING BOOKMAR_ID INTO ABOOKMARK_ID;


END;


and the PL/SQL compiler/engine will take care of parameters, types, assignments... one line of code against how many??? That's probably why almost noone writes Java stored procedures - I'll stay away from .NET ones and BlackFishes too - better to use an Oracle Express instance.


http://

9/5/2007 11:12:12 AM

http://

There probably is a method overload that lets you construct and assign a parameter in one line. Also, I think it is not so much about simple SP. It is the compfort of having .NET lib support creating queries and having logic all in the same place.


What would be even more interesting is if it is possible to construct a query in an Objectoriented  style.


Something like


Query q = new Query(DbSchema).Where(...).In(...)


El


http://

Comments are closed

Powered by BlogEngine.NET 1.3.0.0
Theme by Mads Kristensen

About the author

Name of author John Moshakis
I'm a software developer living in Toronto..

E-mail me Send mail

Calendar

<<  February 2010  >>
MoTuWeThFrSaSu
25262728293031
1234567
891011121314
15161718192021
22232425262728
1234567

View posts in large calendar

Pages

    Recent comments

    Authors

    Tags

    Don't show

      Disclaimer

      The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

      © Copyright 2010

      Sign in