Пример #1
0
 public void Prepare()
 {
     if (compiledStatement != null && accessor != null)
     {
         return;
     }
     compiledStatement = (NodeConfiguration != null)
 ? driver.Compile(Statement, NodeConfiguration)
 : driver.Compile(Statement);
     accessor  = driver.GetDataReaderAccessor(TupleDescriptor);
     Statement = null;
 }