1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【エラー備忘録】SQLiteでError: SQLITE_ERROR: near ")": syntax error

Posted at

状況

SQLのcreate文を書くテスト中、デバッグを行うとエラーが出た。

エラー内容

実際のエラー文は以下の通り。

Error: SQLITE_ERROR: near ")": syntax error

閉じ括弧")"のあたりに文法エラーがあるとのこと。

原因・解決法

複数のcreate文を書いていたので、ひとつずつ確認する。
すると、うち一文の閉じ括弧の前に","を書いていた。
これを削除するとエラーは解消された。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?