blah blah blah is here! blah blah » Close

0
votes
0 answers

Storing an image/document in sql server

I need to store email attachments, which may be an image,file, or document in sql server. Which datatype should I use for the column? would it be nvarchar(MAX)?

0
votes
0 answers

Guidelines on writing code that can easily be unit testing

Are there any general guidelines on how to write code that can be properly united tested? The goal for me is to able to unit test as much as possible, and to achieve that goal I am sure I have to design my software in such a way for this ...

0
votes
0 answers

List top members for the month/day?

It would be great if you could see a list of 'top' members who have participated on debugging. Top could mean many things, maybe have it sortable for things like: - most questions/answers - points awarded - accepted answers

0
votes
0 answers

starting a new web project, recomendations on solid design patterns and architecture

I'm starting a new web app, and I want to build it with flexibility and maintainability in mind. In the past I would just create classes that mapped 1:1 with database tables, and then created another class which was kind of a factory tha ...

0
votes
1 answers

When restoring a sqlserver database, does the original file get copied to another location?

If I download a backup of a database and store it on my hard drive, when I go and restore the database, will the restore process create a copy of that file and move it to the sql server folder i.e. /data/mydatabase or will it just reference ...

1
votes
2 answers

Is it really practicle to write unit tests for all your classes/methods?

I haven't done the unit testing thing really but I am curious for those of you with more experience with unit testing, is it really practical to write unit tests for all your classes and methods? Or to be more realistic, should one just ...

Feedback