Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

private DataTable GetDataFromCSV() {

        System.Data.DataTable dtExecChanges = new System.Data.DataTable("exec_changes");

        string dirName = Path.GetDirectoryName(sInputFileName);          

        using (OleDbConnection cn =
            new OleDbConnection(@"Provider=Microsoft.Jet.OleDb.4.0;" +
                    "Data Source=" + dirName + ";" +
                    "Extended Properties=\"Text;HDR=Yes;FMT=Delimited\""))
        {
            // Open the connection 
            cn.Open();

            // Set up the adapter 
            using (OleDbDataAdapter adapter =
                new OleDbDataAdapter("SELECT * FROM " + (sInputFileName.Substring(sInputFileName.LastIndexOf("\\") + 1)), cn))
            {                    
                adapter.Fill(dtExecChanges);
            }

            cn.Close();
        }

When I fill my data table dtExecChanges it will error coz my CSV file is empty. Is there a way to chck is the select query is actually fetching any rows b4 filling by data table??

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.