Tag Archives: database

Installing CouchDB on a VM

“The time to relax is when you don’t have time for it.”  – Sydney J. Harris After CouchDB hit its official 1.0 release, I decided to try it out and compare it to existing RDBMS, although this is probably not the right thing to do since CouchDB is based on a completely different paradigm. Anyway, [...]

I Got Code #1: Executing SQL stored procedures from a C# application the optimal way

Using stored procedures instead of writing SQL queries manually is a good thing to do in pretty much every application that involves SQL databases. In C#, to execute a stored procedure, a developer needs to initialize an instance of SqlConnection, set the connection string, create an instance of SqlCommand, add the parameters, set the type [...]