我想执行。使用批处理文件的CQL文件 我试过这段代码,但我总是有错误信息
cd C:\Users\admin\.devcenter\DevCenter\CQLScripts
cqlsh 189.3.2.402 9044
cqlsh -f file.cql
错误消息如下: " cqlsh n' est reconnunt quent commande interne"
PS:我是初学者在cql ..
谢谢!
答案 0 :(得分:2)
您的PATH环境变量是否指向您的python安装?如果没有,请尝试以下方法:
public function findAllP($main)
{
return $this->createQueryBuilder('pl')
->leftJoin('pl.category', 'al')
->where('al.parentCat = :pc')
->setParameter('pc', $main)
->getQuery()
->execute();
}