예제 #1
0
 public static string GetConfigValueString(string itemKey)
 {
     SQLStoredProc sp = new SQLStoredProc(config.ConnectionString, "haah.GetConfigValueString");
     sp.AddInputParameter("@ItemKey", itemKey);
     return sp.ScalarString("");
 }