TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
nilesh rachh
NA
39
1.1k
MySqlDataAdapter return null value in wcf web service
Jul 22 2019 2:55 AM
public static DataTable SelectMethod(string _select)
{
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 ... /
Reply
Answers (
2
)
How insert security in SOAP request?
Unable to get the response from the GetDataSetResultAsync