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 ...
Please Help ...

Manikandan MurugesanPosted Jul 5, 2017, 8:32 PM
aman deepPosted Jul 5, 2017, 10:30 AM
aman deepPosted Jul 5, 2017, 10:30 AM
Tapan PatelPosted Jul 5, 2017, 10:26 AM