このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

SQL Executioner

説明

Instead of needing a tool like phpMyAdmin
or the mysql command line client to view and modify your WordPress database,
the SQL Executioner allows you to run arbitrary SQL queries against your
WordPress database from within the Admin. In many cases this allows you to bypass
the inherent limitations of the WordPress Admin interface, and use the full expressive
power of SQL to analyze and update your blog’s database.

To use simply install and visit the Tools > SQL Executioner page.

If you’re interested in contributing to the code behind this plugin, it’s also hosted on GitHub:
https://github.com/justincwatt/wp-sql-executioner

スクリーンショット

  • This is what you get after describing the posts table.

インストール

Extract the zip file, drop the sql-executioner folder in your wp-content/plugins/
directory, and then activate from the Plugins page.

FAQ

Does this plugin have any undo?

No. It executes SQL queries directly against your database. If in doubt, run a SELECT
query before attempting an UPDATE or DELETE query to confirm what
you are about to modify.

Can I irreparably damage my WordPress database using this plugin?

Yes.

Do I have to know SQL to use this plugin?

Yes. Other than a basic facility that will DESCRIBE each table for you, there
is no GUI (graphical user interface).

評価

2019年7月31日
I use this plugin on a daily basis to run quick queries in the database while developing. Very very helpful!!!
2016年9月3日
This is a great general purpose plug-in. Unfortunately it is incompatible with Xenial Xerxus (or Ubuntu 16.04 LTS if you wish) - I had to remove it via command line as it was crashing my blog after OS upgrade. Will definitely reinstall once the issue is fixed.
11件のレビューをすべて表示

貢献者と開発者

SQL Executioner はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“SQL Executioner” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1.4

  • Added CSV export format (hat tip: olarmarius)

1.3

  • Updated to work with PHP 7

1.2

  • Cleaned code up to submit to WP Plugin Repo
  • Wrapped functions in class

1.1

  • Add wp_nonce_field check, minor code cleanup

1.0

  • Initial version