0
votes
Querying like Linq when you don’t have Linq.
First of all. Getting linq itself to work on 2.0 is out of the question. Its possible, but really not something to do outside a testing environment.
The closest you can get in terms of …
8
votes
Database, Table and Column Naming Conventions?
No. A table should be named after the entity it represents.
Person, not persons is how you would refer to whoever one of the records represents.
Again, same thing. The column FirstNa …
3
votes
What’s your favourite way of interacting with DBs from your programming language?
I really like the 3 + 1 tier way of doing things.
One tier for UI, one for business logic, and for persisting data. The last one you say? Domain objects and interfaces.This makes it possible …
0
votes
HOWTO - Compare a date string to datetime in SQL Server?
SELECT *
FROM table1
WHERE CONVERT(varchar(10),columnDatetime,121) =
CONVERT(varchar(10),CONVERT('14 AUG 2008' ,smalldatetime),121)
This will convert the da …
1
vote
