Tagged Questions
9
votes
8answers
918 views
Improving code readability for SQL commands
In one of my classes for a web application I am developing, I have some reasonably long SQL queries.
When developing a three-tier application, what are the best practices to make this kind of code ...
0
votes
3answers
98 views
Trying to return rows between a given id and the same id + offset, where should most logic go to determine how to retrieve the data?: BLL or DAL
In my database I have a table called ThingsInACircle. Every time a Thing is added to the ThingsInACircle, it gets added with a ThingId that is auto incremented.
Imagine the Things in this table as ...