{
DataTable _dtsel = new DataTable();
MySqlDataAdapter _mysel = new MySqlDataAdapter(_select, con);
// _mysel.SelectCommand.CommandTimeout = 900;
try
{
_mysel.Fill(_dtsel);
}
catch (Exception ex) { string a = ex.Message; return null; }
finally
{
_mysel.Dispose();
ConClose();
}
return _dtsel;
}
This code working fine
but sometimes when we try to call this service repeatedly ....sqldataadapter returns null value... pl help me what is the probelm ... /
but sometimes when we try to call this service repeatedly ....sqldataadapter returns null value... pl help me what is the probelm ... /
Bidyasagar MishraPosted Aug 16, 2019, 8:23 PM
Subbarao APosted Jul 25, 2019, 2:42 AM