在Sqlite 3.6.0中,我想更新记录是否存在或插入。但是我收到错误消息
java.sql.SQLException: near "on": syntax error
我的SQL查询如下;
INSERT INTO tx (
_id,
amount,
fee,
prev_hash,
nonce,
action_time,
completion_time,
_from,
_to,
asset,
hash,
block,
seq,
[desc]
)
VALUES (
?,
?,
?,
?,
?,
?,
?,
?,
?,
?,
?,
?,
?,
?
)
ON CONFLICT (
_id
)
DO UPDATE SET amount = 1.0,
fee = 0.001,
prev_hash = 'e6d0ca4b71488972cb149eef427ffbeb6132449c045c88db89ddaa8ab0c3611f',
nonce = 1544773280,
action_time = 1544773276808,
completion_time = 1544773276808,
_from = 'SKK1P5eQqoN7FBKnughbvp3UBK2CyjRQhHBp',
_to = 'SKK1KuAwe4kR1SfdoXDiQStVtRPvdTVaKy2ry',
asset = 'SKK',
hash = '',
block = 100,
seq = 15288,
[desc] = 'denemee'
我的代码块如下;
sql = "insert into tx (_id,amount,fee,prev_hash,nonce,action_time,completion_time,_from,_to,asset,hash,block,seq,desc) "
+ "values (?,?,?,?,?,?,?,?,?,?,?,?,?,?) on conflict (_id) do update set "
+ "amount =" + tx.amount + ",fee=" + tx.fee + ",prev_hash='" + tx.prev_hash
+ "'" + ",nonce=" + tx.nonce + ",action_time=" + tx.action_time
+ ",completion_time=" + tx.action_time + ",_from='" + tx.wallet + "'" + ",_to='"
+ tx.to + "'" + ",asset='" + tx.asset + "'" + ",hash=''" + ",block=100"
+ ",seq=" + tx.seq + ",desc='" + tx.desc + "'";
PreparedStatement pstmt = con.prepareStatement(sql);
pstmt.setString(1, tx._id);
pstmt.setString(2, String.valueOf(tx.amount));
pstmt.setString(3, String.valueOf(tx.fee));// fee
pstmt.setString(4, tx.prev_hash);// prev_hash
pstmt.setString(5, tx.nonce);// nonce
pstmt.setString(6, String.valueOf(tx.action_time));// action time
pstmt.setString(7, "");// completion_time
pstmt.setString(8, tx.wallet);// from
pstmt.setString(9, tx.to); // to
pstmt.setString(10, tx.asset);// asset
pstmt.setString(11, tx.hash);// hash
pstmt.setString(12, "");// block
pstmt.setInt(13, tx.seq);// seq
pstmt.setString(14, tx.desc);// desc
pstmt.executeUpdate();
原始查询在sqlitestudio上成功运行,但出现错误。我知道sqlite 3.6.0版本支持upsert事件。我在哪里做错了,如何正确处理此问题。
答案 0 :(得分:2)
您的问题是由于
我知道sqlite 3.6.0版支持upsert事件。
只能从版本3.24.0开始使用INSERT..... ON CONFLICT .... DO....
(称为 UPSERT )。
在3.24.0之前的版本中尝试使用 UPSERT (DO .....)将导致 syntax error at ON
按照
UPSERT是对INSERT的特殊语法添加,导致INSERT 如果INSERT违反了 唯一性约束。 UPSERT不是标准的SQL。 SQLite中的UPSERT 遵循PostgreSQL建立的语法。增加了UPSERT语法 到SQLite版本3.24.0(2018-06-04)。
UPPERT是普通的INSERT语句,后跟 上面显示的特殊的ON CONFLICT子句。
SQL As Understood By SQLite - upsert
您需要使用3.24.0或更高版本的SQLite版本,或者找到其他方法。