Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 Wordpress 中创建一个新数据库。我不知道这是否可能,如果可以,你会怎么做?
如果您确实需要一个新数据库(不太可能,但这不是您的问题的重点),那么运行 WordPress 的用户需要能够创建数据库。正如 Pekka 所指出的,大多数安装都不允许这样做。
如果您的设计允许,请尝试在表格中包含您自己的命名约定。我已经这样做了几次以确保数据分离(在浏览数据库时)以及其他一些原因。
例子:
$fullTablename = $wpdb->prefix . $pluginPrefix . $table;