Exemplo n.º 1
0
 public void Close()
 {
     if (DataReader != null)
     {
         DataReader.Close();
         DataReader = null;
     }
     if (Command != null)
     {
         Command.Close();
         Command = null;
     }
 }
Exemplo n.º 2
0
        public CCommand GetCommand()
        {
            CCommand Res = new CCommand(this);

            return(Res);
        }
Exemplo n.º 3
0
 public CRecordSet(CConnection Connection)
 {
     DataReader      = null;
     Command         = new   CCommand(Connection);
     Command.Timeout = 299;
 }