Dear all,
I have the application which works fine according to the specs but I would like to structure my code efficiently .I am actually reading the data and will update or insert into mdb file according to the output.Is there any other way to simplify the below code?.Thanks in advance
I have the application which works fine according to the specs but I would like to structure my code efficiently .I am actually reading the data and will update or insert into mdb file according to the output.Is there any other way to simplify the below code?.Thanks in advance
Code:
while (proreader.Read()) { string profid = proreader["EMRID"].ToString(); string accid = proreader["accountid"].ToString(); string server = proreader["server"].ToString(); string userid = proreader["userid"].ToString(); string password = proreader["password"].ToString(); string mdbpath = proreader["mdbpath"].ToString(); string mdbuserid = proreader["mdbuserid"].ToString(); string mdbpassword = proreader["mdbpassword"].ToString(); }
Comment