objConn = new System.Data.OleDb.OleDbConnection(connectStr);
objConn.Open();
CmdSend = objConn.CreateCommand();
CmdUpdateOK = objConn.CreateCommand();
CmdUpdateError = objConn.CreateCommand();
IF (CmdSend)
{
try
{
CmdSend.set_CommandText(strFmt(#LedgerJournalTransSelect, curext()));
ReaderSelect = CmdSend.ExecuteReader();
while(ReaderSelect.Read())
{
_InterfaceNo = strLRTrim(ReaderSelect.GetString(0));
When I run this method, the code doesn't proceed after ReaderSelect = CmdSend.ExecuteReader().
I checked the connection with external database is okay.
Please give me any advice what I should check?
Thanks.
*This post is locked for comments
I have the same question (0)