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
aman deep
NA
57
19.5k
SqLite DataBase Locked Exception
Jul 5 2017 10:13 AM
My Code Is following i wants to retun a SqLiteDataReader From My Function But I got DataBase Lockked Exception
Following is My Code
public static SQLiteDataReader getAction(string Qry)
{
SQLiteConnection m_dbConnection;
SQLiteDataReader reader = null;
m_dbConnection = new SQLiteConnection(Connn);
m_dbConnection.Open();
SQLiteCommand command = new SQLiteCommand(Qry, m_dbConnection);
reader = command.ExecuteReader(System.Data.CommandBehavior.CloseConnection);
return reader;
}
..
Please Help ...
Reply
Answers (
4
)
How to fetch data in a perticular desired gridview cell?
Sliding A Panel