使用Datastax - Cassandra PHP Driver,我想执行CQL脚本文件。例如,此脚本文件包含许多CREATE KEYSPACE,CREATE TABLE命令。
在cqlsh终端中,我可以通过
完成上述操作cqlsh>source 'script_name.cql';
但是,我如何通过Datastax - Cassandra PHP Driver实现同样的目标?
感谢任何帮助。
答案 0 :(得分:1)
驱动程序中没有此类API。同样可以通过以下方式实现:
exec(cqlsh [ other optional options ] -f script_name.cql)
。