我正在使用Phantom库将我的Scala代码中的行插入到Cassandra中。
所以基本上我创建了一个扩展CassandraTable的类,然后我从幻像库中获取了所有的创建,更新方法。
我想知道的一件事是它如何生成INSERT语句。它是否生成条件更新语句的vanilla INSERT语句,如INSERT IF NOT EXISTS。
答案 0 :(得分:3)
只需记录查询,响应就很明显了。默认情况下,{% extends 'Shop/Catalogue.html' %}
{% extends 'Shop/Catagories.html' %}
查询不包含apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.kana_tutor.dependenciesdemo"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta3'
testCompile 'junit:junit:4.12'
compile project(path: ':thelibrary')
}
。从Phantom 2.5.0开始,表格会自动生成insert
方法,因此您可以调用:
ifNotExists
在幻影2.5.0之前:
store
在旁注中,幻像中的所有查询都有一个database.table.store(record).ifNotExists.future()
访问者,因此查看内容非常简单。