Question : Where do I need to close/Dispose of my connections, in my code

I havethe attached code - where here do I need to close/dispose of my connections efficiently
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
public static void spPDE_Claim_Reimb_Automation_TEST(string _type, int claimID, int _clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes;MultipleActiveResultSets=true;";

        string strCPT = string.Empty;
        string strSql = string.Empty;
        string strSql2 = string.Empty;
        string strStatus = string.Empty;
        string testState = getState(_clientID);
        string strState = testState;
        string strState2 = testState;
        string year = "2010";
        int iRec, intQTY;
        double monNatRate, monReimb, fltAWI;
        fltAWI = getAWI(_clientID);

        if (year == "2010")
            year = string.Empty;
        else
            year = "_" + year;

        // T Status Update
        strSql = "SELECT CAST(ISNULL(C.units" + _type + ", 0) AS varchar(50)), C.HCPCS" + _type + " AS HCPCS, " +
            "AB.Status, AB.Weight, CAST(AB.[Nat Rate] AS varchar(40)), CAST(claimDetailID AS varchar(50)) " +
            "FROM CLAIM_tblDetail AS C LEFT OUTER JOIN " +
            "dbMasterData.dbo.vwADDB" + year + " AS AB ON LEFT(C.HCPCS" + _type + ", 5) = AB.HCPCS " +
            "WHERE (AB.Status = 'T') AND (C.claimID = " + claimID + ") " +
            "ORDER BY AB.Weight DESC";

        SqlDataReader objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
        if (objDR.HasRows)
        {
            iRec = 0;
            while (objDR.Read())
            {
                strSql = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = 0" +
                " WHERE claimDetailID = " + Convert.ToInt32(objDR.GetString(5)) + " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql);

                monNatRate = Convert.ToDouble(objDR.GetString(4)) * 0.6 * fltAWI + Convert.ToDouble(objDR.GetString(4)) * 0.4;
                iRec = iRec + 1;
                intQTY = Convert.ToInt32(objDR.GetString(0));

                if (iRec >= 1)
                {
                    monReimb = monNatRate + (intQTY - 1) * 0.5 * monNatRate;
                }
                else
                {
                    monReimb = 0.5 * monNatRate * intQTY;
                }

                if (objDR.GetString(1).Length > 5)
                {
                    if (Right(objDR.GetString(1), 2) == "50")
                    {
                        monReimb = 1.5 * monReimb;
                    }

                    if (Right(objDR.GetString(1), 2) == "ZN" || Right(objDR.GetString(1), 2) == "NM")
                    {
                        monReimb = 0;
                    }
                }

                strSql2 = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = CASE WHEN [units" + _type + "] = 0 THEN 0 ELSE " + monReimb +
                    " END WHERE claimDetailID =" + Convert.ToInt32(objDR.GetString(5)) + " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql2);
            }
        }

        // All Statuses other than T
        monReimb = 0;
        strSql = "SELECT CAST(ISNULL(C.units" + _type + ", 0) AS varchar(50)), C.HCPCS" + _type + " AS HCPCS, " +
        "AB.Status, AB.Weight, CAST(ISNULL(AB.[Nat Rate], 0) AS varchar(40)) AS [NatRate], CAST(claimDetailID AS varchar(50)) " +
        "FROM CLAIM_tblDetail AS C LEFT OUTER JOIN " +
        "dbMasterData.dbo.vwADDB" + year + " AS AB ON LEFT(C.HCPCS" + _type + ", 5) = LEFT(AB.HCPCS, 5) " +
        "WHERE (AB.Status <> 'T') AND (C.claimID = " + claimID + ") " +
        "ORDER BY AB.Weight DESC";
        objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
        if (objDR.HasRows)
        {
            iRec = 0;
            while (objDR.Read())
            {
                strCPT = objDR.GetString(1);
                intQTY = Convert.ToInt32(objDR.GetString(0));
                monNatRate = Convert.ToDouble(objDR.GetString(4));
                strStatus = strNull(objDR.GetString(2));

                if (strCPT == "G0378")
                    intQTY = 1;
                // Status A
                if (strStatus == "A")
                {
                    string strDME = getDME(strCPT, strState) ?? "None";
                    if (strDME != "None")
                    {
                        double dme = Convert.ToDouble(getDME(strCPT, strState));
                        monReimb = intQTY * dme;
                    }
                    else
                    {
                        string strClinLab = getClinLab(strCPT, strState) ?? "None";
                        if (strClinLab != "None")
                        {
                            monReimb = intQTY * Convert.ToDouble(getClinLab(strCPT, strState));
                        }
                        else
                        {
                            string strProFee = getClaimProFee(strCPT, claimID, year) ?? "None";
                            if (strProFee != "None")
                            {
                                monReimb = intQTY * Convert.ToDouble(getClaimProFee(strCPT, claimID, year));
                            }
                        }
                    }
                }
                // Status G, H, K - Use unadjusted Nat Rate, if null use Hospital CCR * REV from TRANS
                else
                {
                    if (strStatus == "G" || strStatus == "H" || strStatus == "K")
                    {
                        monReimb = intQTY * monNatRate;
                    }
                    else
                    {
                        monReimb = intQTY * ((monNatRate * 0.6 * fltAWI) + (monNatRate * 0.4));
                    }

                }

                if (objDR.GetString(1).Length > 5)
                {
                    if (Right(objDR.GetString(1), 2) == "50")
                    {
                        monReimb = 1.5 * monReimb;
                    }

                    if (Right(objDR.GetString(1), 2) == "ZN" || Right(objDR.GetString(1), 2) == "NM")
                    {
                        monReimb = 0;
                    }
                }
                // 9/26/2006 - Pete wants those Z or X medical codes to grab the reimbursement as well
                if (Left(strCPT, 1) == "X" || Left(strCPT, 1) == "Z")
                {
                    strSql = "SELECT basic_rt FROM vwMedicaid_CA_ZX WHERE proc_code = '" + strCPT + "'";
                    objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
                    if (objDR.HasRows)
                    {
                        while (objDR.Read())
                        {
                            monReimb = Convert.ToDouble(objDR.GetString(0));
                        }
                    }
                }
                // Perform last update
                strSql2 = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = CASE WHEN [units" + _type + "] = 0 THEN 0 ELSE " + monReimb +
                          " END WHERE claimDetailID =" + Convert.ToInt32(objDR.GetString(5)) +
                          " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql2);
            }
            objDR.Close();

        }
    }

    private static string getClaimProFee(string code, int clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        SqlParameter[] aryParams = new SqlParameter[2];
        aryParams[0] = new SqlParameter("@clientID ", SqlDbType.Int);
        aryParams[0].Value = clientID;
        aryParams[1] = new SqlParameter("@code", SqlDbType.VarChar);
        aryParams[1].Value = code;

        try
        {
            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_MDCR_REIMB_ProFee_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "None";
        }

        return result;
    }


    private static string getClaimProFee(string code, int claimID, string year)
    {

        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        SqlParameter[] aryParams = new SqlParameter[3];
        aryParams[0] = new SqlParameter("@claimID", SqlDbType.Int);
        aryParams[0].Value = claimID;
        aryParams[1] = new SqlParameter("@code", SqlDbType.VarChar);
        aryParams[1].Value = code;
        aryParams[2] = new SqlParameter("@year", SqlDbType.VarChar);
        aryParams[2].Value = year;

        try
        {
            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimProFee_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "None";
        }

        return result;
    }



    private static string getClaimClinLab(string code, string state)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        switch (state)
        {
            case "CA":
                state = "CA1";
                break;
            case "NY":
                state = "NY1";
                break;
            case "MO":
                state = "MO1";
                break;
        }
        string result = String.Empty;
        SqlParameter[] aryParams = new SqlParameter[2];
        aryParams[0] = new SqlParameter("@code", SqlDbType.VarChar);
        aryParams[0].Value = code;
        aryParams[1] = new SqlParameter("@state", SqlDbType.VarChar);
        aryParams[1].Value = state;

        try
        {
            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimClinLab_GET", aryParams);
        }
        catch
        {
            result = "None";
        }
        return result;
    }

    private static string getClaimDME(string code, string state)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        SqlParameter[] aryParams = new SqlParameter[2];
        aryParams[0] = new SqlParameter("@code", SqlDbType.VarChar);
        aryParams[0].Value = code;
        aryParams[1] = new SqlParameter("@state", SqlDbType.VarChar);
        aryParams[1].Value = state;

        try
        {
            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimDME_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "none";
        }
        return result;
    }

    private static string getClaimYear(string _date)
    {
        DateTime dt = Convert.ToDateTime(_date);
        string _year = dt.Year.ToString();
        return _year;
    }

    private static double getClaimAWI(int clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        double result = 1;
        SqlParameter[] aryParams = new SqlParameter[1];
        aryParams[0] = new SqlParameter("@clientID", SqlDbType.Int);
        aryParams[0].Value = clientID;

        try
        {
            result = (double)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClientAWI_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = 1;
        }

        return result;
    }

    private static string getClaimState(int _clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        SqlParameter[] aryParams = new SqlParameter[1];
        aryParams[0] = new SqlParameter("@clientID", SqlDbType.Int);
        aryParams[0].Value = _clientID;

        try
        {
            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClientState_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "CA";
        }

        return result;
    }

    public static string claimRight(string param, int length)
    {
        string result = param.Substring(param.Length - length, length);
        return result;
    }

    public static string claimLeft(string param, int length)
    {
        string result = param.Substring(0, length);
        return result;
    }

    public static string claimstrNull(string _null)
    {
        string test;
        if (_null == null)
            test = "";
        else
            test = _null;
        return test;
    }

};

Answer : Where do I need to close/Dispose of my connections, in my code


I have updated your code with dispose methods. See below:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
public static void spPDE_Claim_Reimb_Automation_TEST(string _type, int claimID, int _clientID)
      {
          SqlConnection conn = new SqlConnection();
          conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes;MultipleActiveResultSets=true;";
          
          try
          {
              conn.Open();

              spPDE_Claim_Reimb_Automation_TEST2(conn, _type, claimID, _clientID);
          }
          finally
          {
              conn.Dispose();
          }
      }

      public static void spPDE_Claim_Reimb_Automation_TEST2(SqlConnection conn, string _type, int claimID, int _clientID)
    {
        
        string strCPT = string.Empty;
        string strSql = string.Empty;
        string strSql2 = string.Empty;
        string strStatus = string.Empty;
        string testState = getState(_clientID);
        string strState = testState;
        string strState2 = testState;
        string year = "2010";
        int iRec, intQTY;
        double monNatRate, monReimb, fltAWI;
        fltAWI = getAWI(_clientID);

        if (year == "2010")
            year = string.Empty;
        else
            year = "_" + year;

        // T Status Update
        strSql = "SELECT CAST(ISNULL(C.units" + _type + ", 0) AS varchar(50)), C.HCPCS" + _type + " AS HCPCS, " +
            "AB.Status, AB.Weight, CAST(AB.[Nat Rate] AS varchar(40)), CAST(claimDetailID AS varchar(50)) " +
            "FROM CLAIM_tblDetail AS C LEFT OUTER JOIN " +
            "dbMasterData.dbo.vwADDB" + year + " AS AB ON LEFT(C.HCPCS" + _type + ", 5) = AB.HCPCS " +
            "WHERE (AB.Status = 'T') AND (C.claimID = " + claimID + ") " +
            "ORDER BY AB.Weight DESC";

        SqlDataReader objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
        if (objDR.HasRows)
        {
            iRec = 0;
            while (objDR.Read())
            {
                strSql = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = 0" +
                " WHERE claimDetailID = " + Convert.ToInt32(objDR.GetString(5)) + " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql);

                monNatRate = Convert.ToDouble(objDR.GetString(4)) * 0.6 * fltAWI + Convert.ToDouble(objDR.GetString(4)) * 0.4;
                iRec = iRec + 1;
                intQTY = Convert.ToInt32(objDR.GetString(0));

                if (iRec >= 1)
                {
                    monReimb = monNatRate + (intQTY - 1) * 0.5 * monNatRate;
                }
                else
                {
                    monReimb = 0.5 * monNatRate * intQTY;
                }

                if (objDR.GetString(1).Length > 5)
                {
                    if (Right(objDR.GetString(1), 2) == "50")
                    {
                        monReimb = 1.5 * monReimb;
                    }

                    if (Right(objDR.GetString(1), 2) == "ZN" || Right(objDR.GetString(1), 2) == "NM")
                    {
                        monReimb = 0;
                    }
                }

                strSql2 = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = CASE WHEN [units" + _type + "] = 0 THEN 0 ELSE " + monReimb +
                    " END WHERE claimDetailID =" + Convert.ToInt32(objDR.GetString(5)) + " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql2);
            }
        }

        // All Statuses other than T
        monReimb = 0;
        strSql = "SELECT CAST(ISNULL(C.units" + _type + ", 0) AS varchar(50)), C.HCPCS" + _type + " AS HCPCS, " +
        "AB.Status, AB.Weight, CAST(ISNULL(AB.[Nat Rate], 0) AS varchar(40)) AS [NatRate], CAST(claimDetailID AS varchar(50)) " +
        "FROM CLAIM_tblDetail AS C LEFT OUTER JOIN " +
        "dbMasterData.dbo.vwADDB" + year + " AS AB ON LEFT(C.HCPCS" + _type + ", 5) = LEFT(AB.HCPCS, 5) " +
        "WHERE (AB.Status <> 'T') AND (C.claimID = " + claimID + ") " +
        "ORDER BY AB.Weight DESC";
        objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
        if (objDR.HasRows)
        {
            iRec = 0;
            while (objDR.Read())
            {
                strCPT = objDR.GetString(1);
                intQTY = Convert.ToInt32(objDR.GetString(0));
                monNatRate = Convert.ToDouble(objDR.GetString(4));
                strStatus = strNull(objDR.GetString(2));

                if (strCPT == "G0378")
                    intQTY = 1;
                // Status A
                if (strStatus == "A")
                {
                    string strDME = getDME(strCPT, strState) ?? "None";
                    if (strDME != "None")
                    {
                        double dme = Convert.ToDouble(getDME(strCPT, strState));
                        monReimb = intQTY * dme;
                    }
                    else
                    {
                        string strClinLab = getClinLab(strCPT, strState) ?? "None";
                        if (strClinLab != "None")
                        {
                            monReimb = intQTY * Convert.ToDouble(getClinLab(strCPT, strState));
                        }
                        else
                        {
                            string strProFee = getClaimProFee(strCPT, claimID, year) ?? "None";
                            if (strProFee != "None")
                            {
                                monReimb = intQTY * Convert.ToDouble(getClaimProFee(strCPT, claimID, year));
                            }
                        }
                    }
                }
                // Status G, H, K - Use unadjusted Nat Rate, if null use Hospital CCR * REV from TRANS
                else
                {
                    if (strStatus == "G" || strStatus == "H" || strStatus == "K")
                    {
                        monReimb = intQTY * monNatRate;
                    }
                    else
                    {
                        monReimb = intQTY * ((monNatRate * 0.6 * fltAWI) + (monNatRate * 0.4));
                    }

                }

                if (objDR.GetString(1).Length > 5)
                {
                    if (Right(objDR.GetString(1), 2) == "50")
                    {
                        monReimb = 1.5 * monReimb;
                    }

                    if (Right(objDR.GetString(1), 2) == "ZN" || Right(objDR.GetString(1), 2) == "NM")
                    {
                        monReimb = 0;
                    }
                }
                // 9/26/2006 - Pete wants those Z or X medical codes to grab the reimbursement as well
                if (Left(strCPT, 1) == "X" || Left(strCPT, 1) == "Z")
                {
                    strSql = "SELECT basic_rt FROM vwMedicaid_CA_ZX WHERE proc_code = '" + strCPT + "'";
                    objDR = SqlHelper.ExecuteReader(conn, CommandType.Text, strSql);
                    if (objDR.HasRows)
                    {
                        while (objDR.Read())
                        {
                            monReimb = Convert.ToDouble(objDR.GetString(0));
                        }
                    }
                }
                // Perform last update
                strSql2 = "UPDATE CLAIM_tblDetail SET [reimb" + _type + "] = CASE WHEN [units" + _type + "] = 0 THEN 0 ELSE " + monReimb +
                          " END WHERE claimDetailID =" + Convert.ToInt32(objDR.GetString(5)) +
                          " AND claimID = " + claimID;
                SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql2);
            }
            objDR.Close();

        }
    }

    private static string getClaimProFee(string code, int clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;

        try
        {
            
            SqlParameter[] aryParams = new SqlParameter[2];
            aryParams[0] = new SqlParameter("@clientID ", SqlDbType.Int);
            aryParams[0].Value = clientID;
            aryParams[1] = new SqlParameter("@code", SqlDbType.VarChar);
            aryParams[1].Value = code;

            conn.Open();

            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_MDCR_REIMB_ProFee_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "None";
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }


    private static string getClaimProFee(string code, int claimID, string year)
    {

        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;        

        try
        {
            
            SqlParameter[] aryParams = new SqlParameter[3];
            aryParams[0] = new SqlParameter("@claimID", SqlDbType.Int);
            aryParams[0].Value = claimID;
            aryParams[1] = new SqlParameter("@code", SqlDbType.VarChar);
            aryParams[1].Value = code;
            aryParams[2] = new SqlParameter("@year", SqlDbType.VarChar);
            aryParams[2].Value = year;

            conn.Open();

            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimProFee_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "None";
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }



    private static string getClaimClinLab(string code, string state)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        switch (state)
        {
            case "CA":
                state = "CA1";
                break;
            case "NY":
                state = "NY1";
                break;
            case "MO":
                state = "MO1";
                break;
        }
        string result = String.Empty;
        

        try
        {
            SqlParameter[] aryParams = new SqlParameter[2];
            aryParams[0] = new SqlParameter("@code", SqlDbType.VarChar);
            aryParams[0].Value = code;
            aryParams[1] = new SqlParameter("@state", SqlDbType.VarChar);
            aryParams[1].Value = state;

            conn.Open();

            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimClinLab_GET", aryParams);
        }
        catch
        {
            result = "None";
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }

    private static string getClaimDME(string code, string state)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        

        try
        {
            SqlParameter[] aryParams = new SqlParameter[2];
            aryParams[0] = new SqlParameter("@code", SqlDbType.VarChar);
            aryParams[0].Value = code;
            aryParams[1] = new SqlParameter("@state", SqlDbType.VarChar);
            aryParams[1].Value = state;

            conn.Open();

            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClaimDME_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "none";
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }

    private static string getClaimYear(string _date)
    {
        DateTime dt = Convert.ToDateTime(_date);
        string _year = dt.Year.ToString();
        return _year;
    }

    private static double getClaimAWI(int clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        double result = 1;
        

        try
        {
            SqlParameter[] aryParams = new SqlParameter[1];
            aryParams[0] = new SqlParameter("@clientID", SqlDbType.Int);
            aryParams[0].Value = clientID;

            conn.Open();

            result = (double)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClientAWI_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = 1;
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }

    private static string getClaimState(int _clientID)
    {
        SqlConnection conn = new SqlConnection();
        conn.ConnectionString = "Initial Catalog=dbPDE;Data Source=localhost;Trusted_Connection=yes";

        string result = String.Empty;
        

        try
        {
            SqlParameter[] aryParams = new SqlParameter[1];
            aryParams[0] = new SqlParameter("@clientID", SqlDbType.Int);
            aryParams[0].Value = _clientID;

            conn.Open();

            result = (string)SqlHelper.ExecuteScalar(conn, CommandType.StoredProcedure, "spPDE_ClientState_GET", aryParams);
        }
        catch (Exception ex)
        {
            result = "CA";
        }
        finally
        {
            conn.Dispose();
        }

        return result;
    }

    public static string claimRight(string param, int length)
    {
        string result = param.Substring(param.Length - length, length);
        return result;
    }

    public static string claimLeft(string param, int length)
    {
        string result = param.Substring(0, length);
        return result;
    }

    public static string claimstrNull(string _null)
    {
        string test;
        if (_null == null)
            test = "";
        else
            test = _null;
        return test;
    }
Random Solutions  
 
programming4us programming4us