Rethinkdb を使用するようにセットアップしました。Java ドライバーを使用して Java プログラム経由で DB に接続しようとしています。http://mvnrepository.com/artifact/com.rethinkdb/rethinkdb-driver/2.3.1から RethinkDB Java ドライバー 2.3.1 をダウンロードしました。
しかし、この単純なプログラムで次のコンパイル エラーが発生します。
このコンパイル エラーが発生する理由を教えてください。
//Code Line
r.db("test").tableCreate("authors").run(conn);
//Compile error in eclipse
Multiple markers at this line
- Syntax error, insert ")" to complete SingleMemberAnnotation
- Syntax error, insert ")" to complete MethodDeclaration
- Syntax error, insert "Identifier (" to complete
MethodHeaderName
- Syntax error on token ")", delete this token
- Syntax error, insert "SimpleName" to complete QualifiedName
- Syntax error on token ".", @ expected after this token
完全なプログラム
package com.test;
import com.rethinkdb.RethinkDB;
import com.rethinkdb.gen.exc.ReqlError;
import com.rethinkdb.gen.exc.ReqlQueryLogicError;
import com.rethinkdb.model.MapObject;
import com.rethinkdb.net.Connection;
public class DbConnection {
public static final RethinkDB r = RethinkDB.r;
Connection conn= r.connection().hostname("localhost").port(28015).connect();
r.db("test").tableCreate("authors").run(conn);
}