Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi i want get data from a mysql database and I have the problem that I son't can fill my DataTable with the MySQlDataAdapter :/

public static DataTable GetAllAccountingDataTable(string connectionstring) 
        {
            using (con = new MySqlConnection(connectionstring))
            {
                string sql = "SELECT Username,AcctStartTime,AcctStopTime,FramedIPAddress FROM radacct";

                MySqlCommand command = new MySqlCommand(sql, con);
                MySqlDataAdapter adapter = new MySqlDataAdapter(command);

                DataTable tb = new DataTable();

                adapter.Fill(tb); // here is the error

                con.Open();

                command.ExecuteReader();

                return tb;

            }
        }

error: Unable to convert MySQL date/time value to System.DateTime

the types of my columns in the mysql database:

Username : varchar
AcctStartTime : datetime
AcctStopTime : datetime
FramedIPAddres : varchar

what can I do?

share|improve this question
2  
Seems like a duplicate of stackoverflow.com/questions/5754822/… – Daniel Kelley Jan 28 at 12:35

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.