Blog

The Dollar Value of SaaS Features

I had a discussion with a colleague yesterday on how to determine the priority of features on a given service. We quickly arrived at the topic of assessing business need, i.e. value, of the features. This is a conversation I've had many times, with many clients and thought it might be worthwhile to document some … Continue reading The Dollar Value of SaaS Features

DataReader vs. DataAdapter

Recently I've had discussions with a few people about the pros and cons of using DataAdapter.Fill() vs. using the DataReader. First let's take a look at how DataAdapter.Fill() works. Here is the basic code: try { DbDataAdapter.QuietOpen(connection1, out state1); using (IDataReader reader1 = command.ExecuteReader(behavior | CommandBehavior.SequentialAccess)) { if (data is DataTable) { return this.Fill((DataTable) data, … Continue reading DataReader vs. DataAdapter