Is it your concern that the method is too specific to qualify as part of the Data Layer ? I would make it more generic as previous poster suggests but even if you don't, in my opinion, your are not applying business logic or the such and can leave it in the data layer.
In production code you would also avoid prefixing a variable name with 'my' (SqlCommand myCommand), if the scope of the variable is limited and there is little to no chance of confusion with other variables I often name the variable after the type, hence SqlCommand sqlCommand, in a larger scope, say with variables of custom class type Entity I will use Entity consumer, Entity beneficiary and in rare cases even Entity consumerEntity or Entity beneficiaryEntity (mostly for readability and easily understanding the logic for other developers).