vote up 1 vote down star

Here's my situation. I've noticed that code gets harder to maintain when you keep embedding queries in every function that will use them. Some queries tend to grow very fast and tend to lose readability after concatenating every line. Another issue that comes with all of the concatenation is when you must test a specific query and paste it. You are forced to remove all of the " that held your query string together.

So my question is, what methods are being used to separate queries from the code? I have tried searching but it doesn't look like it's the right thing because i'm not finding anything relevant.

I'd like to note that views and stored procedure are not possible since my queries fetch data from a production database.

Thank you.

flag

46% accept rate

6 Answers

vote up 3 vote down

I avoid this problem by wrapping queries in classes that represent the entities stored in the table. So the accounts table has an Account object. It'll have an insert/update/delete query.

I've seen places where the query is stored in a file and templates are used to replace parts of the query.

Java had something called SQLJ - don't know if it ever took off.

LINQ might provide some way around this as an issue too.

link|flag
vote up 2 vote down

Risking being accused of not answering the question, my suggestion to you would be simply don't. Use an O/RM of your choice and you'll see this problem disappear in no time.

link|flag
vote up 4 vote down

If you follow an MVC pattern, then your queries should be all in the model - i.e. the objects representing actual data.

If not, then you could just put all your repetitive queries in script files, including only those needed in each request.

However, concatenating and that kind of stuff is hard to get rid of; that's why programmers exist :)

link|flag
vote up 4 vote down

These two words will be your best friend: Stored Procedure

link|flag
-1, even worse than embedded. – Neil N Apr 16 at 17:20
1  
@NeilN- Please elaborate how SP can be worse than embedded? – CmdrTallen Apr 16 at 17:23
+1, way better than an embedded string concat messs! – KM Apr 16 at 17:24
SPs are oversold, but I think this should lead one to avoid them. – Paul Apr 16 at 17:28
1  
I'd really like to know how they're even worse than embedded SQL. – Matt Grande Apr 16 at 18:17
show 3 more comments
vote up 2 vote down

I usually create a data class that represents the data requirements for objects that are represented in the database. So if I have a customer class, then I create a customerData class as well that houses all the data access logic in them. This keeps data logic out of your entity classes. You would add all you CRUD methods here as well as custom data methods.

Youc an also use Stored Proceedures or an ORM tool depending on your language.

The main key is to get your data logic away from your business and entity logic.

link|flag
vote up 0 vote down

I use stored procedures in my production environment, and we process the rows too...

link|flag

Your Answer

Get an OpenID
or

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