There's this web app, which relies on a sort of data access library (simple data objects and associated objects to perform CRUD operations on them) which is generated directly from the database.

So from a Person table

ID
Forename
Surname
DoBirth

you'd get a generated Person class with fields:

ID, Forename, Surname, DoBirth typed from their db columns.

And a helper class PersonPersister

with

Create(Person p)  
Update(Person p)  
Delete(Person p)  

methods.

It will also create the necessary CRUD sprocs on the database.

I felt uneasy about this when I started as, aside from brief flirtations with nHibernate and MEF I'm used to handcoding my dataaccess layer. All my worries appear to be coming to fruition now, a year on as we're doing another phase of development with a larger team of devs and the cracks have started to appear.

The basic problem is that as developers we have no control over whats generated and there is no way to version the DAL.

Everytime we do a release we much time hand-configuring the app, dal and databse to get it working. Often the scenario is one in which the DAL has been generated off the dev db and then applied to the live db which of course lacks the tables/sprocs etc. created during development.

At these times, I often find myself heading over to jobserve.com, even though this issue aside I rather like working here.

Ideas I've had include modding the codegenerator so it overwrites source files in an explicit DAL-handling Visual Studio project - these would then be trackable in a CVS and also hand-editable. Does anyone have any positive experiences of such a strategy? At the moment the only artifact the build generates is a dll so seeing the history of changes is not possible.

Aside from using an ORM (management is not a fan - yes, I know) what are our options as far as rationalising this to give ourselves control? We still need an element of automation but the amount we have is unworkable at present.

We are very lucky to have MSDN subscriptions here, so we're running TFS 2010 with automated builds, the latest Visual Studio etc. etc., but because of this aspect of our development environment, it feels like we're a decade or more behind the times.

link|improve this question

1  
Sounds like a lot of churn to me. I worked on a project where developers were obliged to update a 'release' SQL script whenever they committed code affecting the database schema. (the script was vetted and applied to the client's database as part of the release cycle) – Matt Jan 31 '11 at 15:19
'Churn' is one way of describing it :-o – 5arx Jan 31 '11 at 15:23
feedback

3 Answers

up vote 2 down vote accepted

How about a database project which maintains all your stored procedures...

Pros

  1. version control of DB
  2. Easy deployment..You just have to specify which database it goes to and with 1 click u can deploy it...
  3. You know exactly what's changing as a result of introducing a new Class
  4. All Database code resides along with the other code and is available from one IDE which makes it so much easier to send in changes at once..

Cons

  1. You might have to invest time into migrating your present infrastructure which creates stored procs to, something that creates stored proc script files...Basically all code within create/update/delete u were mentioning will have to be written again.

and lots more pro's and cons which you will be a better judge of...

If you consider going for this option you must look at these links below

  1. Beginner's tutorial
  2. Sample Project
link|improve this answer
That sounds good - don't suppose you have a link to an example/tutorial do you ...? – 5arx Feb 14 '11 at 19:53
1  
@5arx : edited answer...take a look – Mulki Feb 15 '11 at 12:27
Cool thanks. I'll have a gander. – 5arx Feb 15 '11 at 12:30
many thanks. It has taken a while to get my head around it, but thankfully for once the available MS tools have actually helped. Accepted -) – 5arx Mar 4 '11 at 21:00
feedback

This strikes me as more of a problem with your deployment strategy rather than a development one. Whether you use an ORM or your current tool then it's going to be generating (if you use the auto-generate) entities from the dev database. Your deployment needs to make sure that all changes to the app are propagated through your QA and onto your Production systems, whether app, database or some other dependency.

link|improve this answer
I'd say its a bit of both but more on the dev than the deployment side of things I'm used to using SQL Delta to sync dev db -> staging -> production, this isn't especially onerous. The problem is more to do with developers making changes to the db, running the codegen and writing bespoke code based on the objects in the newly generated 'DAL' which of course references objects/columns etc. that don't exist on the live DB. – 5arx Jan 31 '11 at 16:48
feedback

I've worked with code generation tools in the past, and used them to generate template code which was included as part of a Visual Studio project, then modified by hand to suit the requirements. This meant the code generation was just a time saving step, and the source was completely version controlled.

It sounds like a good first approach for you would be to do the file overwriting that you speak of, then you get the obvious benefits of version control and a proper QA'd release cycle.

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.