vote up 1 vote down star
1

I asked myself, what the community considers "best practices" when it comes to building a frontend for a database.

e.g.:

should every form has its own connection?

should all the database related stuff go into a separate layer? That is: creating a class, that handles all things database, which I then instantiate from my forms and so on?

how strict should the separation rule be followed, that is: where to put SQL strings, connection strings. In every forms code (findable), in a separate (source-)file as global variables, in a XML file or even nowhere in the sourcecode, only on the sql server?

etc.

flag

To state more precisely I should mention, that my frontend gets written in VB.net (Express) and the DB is a SQL Server 2008 (also Express). The DB already exists (with indexes and proper normalisation ;) but has an Access frontend – MAD9 Mar 12 at 14:06

6 Answers

vote up 1 vote down check

When building a Web Application you normally have 3 layers of logic.

  1. Presentation layer
  2. Business Logic Layer
  3. Data Access Layer

The last layer does everything regarding managing the database.

The Business Logic layer should never talk with the database directly, without using the Data Access Layer.

That's my best advise

link|flag
vote up 2 vote down

Don't make these mistakes.

link|flag
This is good, but not related to the question as he detailed it. – cdonner Mar 12 at 14:00
Wow - I'm glad to have the link. – duffymo Mar 12 at 14:17
vote up 0 vote down

Read up on best practices for application architectures in your language, and read up on the popular frameworks. The answer to this question can easily fill up 3 or 4 semesters worth of application architecture classes.

link|flag
vote up 0 vote down

Understand the transaction model of your database. Oracle and SQL Server both support transactions, but how they work is quiet different.

link|flag
vote up 0 vote down

This is a very broad question with no simple answer. If this is a small to medium project I would put the connection string in web.config (connectionStrings section) and use the built-in SqlDataSource control to access it.

link|flag
vote up 0 vote down

It's always best to separate the different layers of your project. Look into the MVC framework.

MVC on Wikipedia

link|flag

Your Answer

Get an OpenID
or

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