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 5 years have passed since last update.

VoyagerからPHPmyadminで作ったテーブルにアクセスする

Last updated at Posted at 2018-12-01

#やりたいこと
VoyagerからPHPmyadminで作ったテーブルにアクセスしたい。
PHPmyadminからテーブルを作った時点で、Voyagerのデータベース一覧には表示されるのだが、
編集をするとエラーがでる。

 Syntax error or access violation: 1064 

Voyagerから作ったテーブルと何が違うのかを追跡して、設定を合わせたらうまくいったのでメモ。

#「id」カラムの追加
2018-12-01_23h18_55.png

上記の設定でidカラムを追加

#テーブルの設定
2018-12-01_23h14_12.png

  • PHPmayadmin > 操作 > 照合順序 を 画像のものに設定
  • AUTO_INCREMENT を 5 に設定

#カラム名の注意点

  • カラム名は数字で始めるのはNG
    PHPmyadminでは受け付けてくれるが、voyagerでは不正な値としてはねられてしまう。

  • 長すぎるカラム名はNG。1行全体で8kBが限界。

#参考URL

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?