UrbanPro
true

Learn .Net WPF from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Read CSV data using ODBC Connection

Revan
22/03/2017 0 0

Codes to read the CSV data using ODBC Connection-

Input File:

File's Encoding format should be ANSI as below

class Student
{
     public string CollegeId { get; set; }
     public string AdmissionDate { get; set; }
     public string CandidateId { get; set; }
     public string MobileNum { get; set; }
}

 

On the button Click I am calling the code to read the CSV data 

private void btnTest_Click(object sender, RoutedEventArgs e)
{
    string fileName = @"CSVData.csv";

    //Create a ODBC TEXT File connection
    string connectionString = "Driver={Microsoft Text Driver (*.txt;     *.csv)};defaultdir=tempFolder;driverid=27;extensions=csv;
fil=text;maxbuffersize=2048;pagetimeout=5".Replace(" tempFolder", @"C:\Personal\TrialApps\");

     string query = string.Format("SELECT * FROM `{0}`", fileName);

     List lstStudentInfo = new List();
     using (var odbcConnection = new OdbcConnection(connectionString))
    {
       odbcConnection.Open();
       using (var odbcCommand = new OdbcCommand(query, odbcConnection))
      {
           var dataReader = odbcCommand.ExecuteReader(CommandBehavior.CloseConnection);
           while (dataReader.Read())
          {
             string college_id=dataReader["COLLEGE_ID"].ToString();
             string admission_date = dataReader["ADMISSION_DATE"].ToString();
             string candidate_id = dataReader["CANDIDATE_ID"].ToString();
             string mobile_num = dataReader["MOBILE_NUM"].ToString();
             lstStudentInfo.Add(new Student() { CollegeId=college_id,AdmissionDate=admission_date,
                                                                 CandidateId=candidate_id,MobileNum=mobile_num});
          }
       }
    }
    dtGridCSVData.ItemsSource = lstStudentInfo;
}

Xaml Code for the UI Grid: 

Output:

Cheers!

0 Dislike
Follow 0

Please Enter a comment

Submit

Other Lessons for You

C-Program Swapping Contents Of Variables Using Function [Call By Reference Method]
//Header Files #include#include // User defined functions swap with 2 pointer variables passed as an argument list void swap(int*i,int*j){ // Local variable temp int temp; // swapping contents using...

Networking Basic
Networking interview questionsWhat is LAN?LAN is a computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildings. However, one LAN can be connected...

Trends in .Net Platform
.NET Framework is a software framework developed by Microsoft. It includes a large class library named Framework Class Library (FCL) and provides language interoperability (each language can use code written...

Intro to C Programming
C is one of the most popular computer language today. C language was developed by Dennis Ritchie in 1972. C is portable, Robust, Procedure oriented, High level programming language. C requires compiler...

GST By CA Prashanth Reddy
GST on services fixed; Ola, Uber rides and flights to be cheaper, education and health exempt. The GST Council on Friday finalised tax rates for services under the Goods and Service Tax (GST) regime,...
F

Looking for .Net WPF ?

Learn from Best Tutors on UrbanPro.

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for .Net WPF Classes?

The best tutors for .Net WPF Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn .Net WPF with the Best Tutors

The best Tutors for .Net WPF Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more