SQL Server 2005 DAL / Data Dictionary

J

jkimbler

I'm doing research for a new project I'm going to be developing and
I'm looking for some input on a good DAL (data access layer) object/
framework. I've done quite a bit of searching on-line but you can't
see them all. I'm just wondering what commercial/opensource DAL
engines/objects you might have used in the past.

Also...I'm looking for input on the easiest and best way to keep a
database upt-to-date when upgrading software. If new tables have been
added or new columns added this "Data Dictionary" would do the work of
updating the database (SQL Server 2005). Have you used any existing
commercial/opensource objects like this?

Thanks.

-Joe
 
W

Wiebe Tijsma

jkimbler schreef:
I'm doing research for a new project I'm going to be developing and
I'm looking for some input on a good DAL (data access layer) object/
framework. I've done quite a bit of searching on-line but you can't
see them all. I'm just wondering what commercial/opensource DAL
engines/objects you might have used in the past.

Also...I'm looking for input on the easiest and best way to keep a
database upt-to-date when upgrading software. If new tables have been
added or new columns added this "Data Dictionary" would do the work of
updating the database (SQL Server 2005). Have you used any existing
commercial/opensource objects like this?

Thanks.

-Joe

I like LLBLGen Pro, which is a commercial but not-too-expensive product:
http://www.llblgen.com

Very powerful (if you get through the learning curve)

Wiebe Tijsma
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

jkimbler said:
I'm doing research for a new project I'm going to be developing and
I'm looking for some input on a good DAL (data access layer) object/
framework. I've done quite a bit of searching on-line but you can't
see them all. I'm just wondering what commercial/opensource DAL
engines/objects you might have used in the past.

NHibernate and LLBlgen should be on your investigation list.
Also...I'm looking for input on the easiest and best way to keep a
database upt-to-date when upgrading software. If new tables have been
added or new columns added this "Data Dictionary" would do the work of
updating the database (SQL Server 2005). Have you used any existing
commercial/opensource objects like this?

I would prefer to have it in the upgrade program/script/procedure and
not in the application code.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top