R
Radovan Radic
Hello
I tried to find answer on google but i didnt find it.
Using MySQL 4, with MyODBC driver
This code:
string sql = "SELECT * FROM Poruke";
OdbcDataAdapter da = new OdbcDataAdapter();
da.SelectCommand = new OdbcCommand(sql, conn);
DataSet ds = new DataSet();
da.Fill(ds,"Poruke");
takes about 2.5 minutes to run. There are ~36000 records in the table,
12 columns.It is not problem with the network, because i have tried this
on local machine as well.
Does anyone know what is the problem here?
Radovan
I tried to find answer on google but i didnt find it.
Using MySQL 4, with MyODBC driver
This code:
string sql = "SELECT * FROM Poruke";
OdbcDataAdapter da = new OdbcDataAdapter();
da.SelectCommand = new OdbcCommand(sql, conn);
DataSet ds = new DataSet();
da.Fill(ds,"Poruke");
takes about 2.5 minutes to run. There are ~36000 records in the table,
12 columns.It is not problem with the network, because i have tried this
on local machine as well.
Does anyone know what is the problem here?
Radovan