我是卡桑德拉的新手。我必须插入 100 行。但我需要知道插入这些行的时间。我不知道该怎么做。
这是插入 1 行的代码。我有 100 行这样的行,我将循环编写。
public void loadData() {
session.execute("INSERT INTO songs (id, title, album, artist, tags) "
+ "VALUES ("
+ "756716f7-2e54-4715-9f00-91dcbea6cf50,"
+ "'La Petite Tonkinoise',"
+ "'Bye Bye Blackbird',"
+ "'Joséphine Baker'," + "{'jazz', '2013'})" + ";");
}
我需要知道插入这些行的时间。请任何人帮助我....