We have a relatively large application that is strongly tied into Firebird (stored procedures, views etc). We are now getting a lot of requests to support additional databases and we would also like to move a lot of the functionality from the client to the server.

Now seems like a good time to move to a 3(4) tier architecture. We have already looked at DataSnap 2009 and RemObjects SDK/DataAbstract. Both seem like they would do the job, but are there any advantages/disadvantages we should look out for? Are there any other frameworks that you could recommend?

Cheers, Paul

link|improve this question

1  
Delphi is actively developed. – Harriv Feb 13 '09 at 9:04
1  
What is wrong with Delphi? – gabr Feb 13 '09 at 9:26
3  
John, why are you not answering the question asked, and instead posting some nonsense? Delphi is very actively developed, just released a new version a few months ago, and has a roadmap planned out for future releases. Why post FUD that isn't true? – Ken White Feb 13 '09 at 15:16
2  
John, I think you don't know much about Delphi :-) – Mohammed Nasman Feb 13 '09 at 19:50
1  
Our current application is written in Delphi. It would be much easier for us to convert to a multi tier system than translate our existing code to another language. Besides, we do not want to move to another language. Delphi is very active and more than capable of fulfilling our needs. – norgepaul Feb 13 '09 at 20:21
show 1 more comment
feedback

5 Answers

up vote 2 down vote accepted

In the process of moving to a multitier application you could consider using a transport protocol between the layers, which is language/technology independent (like webservices, (i think tha remobjects supports that)).

This could make a reimplementation of a layer simpler later (like if you later have to make a another version of the client-application in a browser/java/silverlight).

link|improve this answer
feedback

I can recommend using the KBM Middleware components from Components4Developers. There is a bit of a learning curve but they are very flexible and hold up well under use in real world conditions.

Comment from a user (http://www.components4programmers.com/usercomments/commentfromapowerusertoaquestion.htm)

link|improve this answer
here is a nice video on KBM Middleware video.codegear.com/CodeRage2007Archives/Day3/KimMadsen.zip – Charles Faiga Feb 13 '09 at 10:20
very poor quality of sound and picture on that video. I love the way in his discussion of the advantages and disadvantages of 1 tier, 2 tier and 3 tier only 3 tier has no disadvantages :) – kjack Feb 13 '09 at 11:09
feedback

Changing your application to Multi-Tiers with new framework (RM,DS,kbmMW, or what ever), will make a lot of changes in our application architecture, I recommended to go with this in future, but you can achieve the support for multi database, with other products like

UniDac from DevArt( Best components for database with direct connection). AnyDac(from same Company who offer RemObjects. SqlDirect(Has support for 9 MajorDB and also ODBC). ZeosDB(Open source).

using one of the components above, will give you support for most major databases, beside it will not make you doig a lot of changes, and in some cases you just replace old database components with the new ones, and maybe change some of properties.

However, changing to Multi-tiers will not only make you only support more databases, but it will separate your business logic from presentation layer, therefore you can have more presentation layers for your application like web interface, or smart devices.

But the most important in the Multi-Tiers architecture, you will have a scalable system the grow more than what the database you are using can handle of connection, beside other benefits, like using other languages to write client applications.

link|improve this answer
I vote for DataAbstract with AnyDAC DAD. Very solid mix. – oodesigner Jul 11 '10 at 13:16
feedback

How many customers care what database is used as long as the application performs well? How do you know they'll buy your product if just the database was changed?

On the other hand if firebird is not cutting the mustard then maybe you just need to switch to a database that does?

If you have a well performing application in 2 tier why incur the extra cost of developing and maintaining an n-tier solution? Isn't it a lot more expensive?

If you do need to support more than 1 database would it not be less expensive to tweak your 2-tier design to do that, even if it means having the client do even more work?

link|improve this answer
Lots of larger customers care about which database. If they already have, for instance, Oracle installed and DBAs on staff, they don't want SQL Server or FireBird for a third-party app. That's extra knowledge and work. They want Oracle, so they can use existing resources. – Ken White Feb 13 '09 at 12:01
OK, but he doesn't need to add extra tiers just to support more than 1 database type. – kjack Feb 13 '09 at 12:10
Ken is correct. Many large customers are wary of using Firebird and would prefer to use something they have heard about/have the competence to deal with e.g. Oracle. Several reasons why we would like n-tier e.g more authentication methods, lighter clients on on multiple platforms/other languages. – norgepaul Feb 13 '09 at 20:19
feedback

You can also investigate Midware http://www.overbyte.be/frame_index.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.