如何将 phpMyAdmin 中的整数设置为默认无符号?
如何将 phpMyAdmin 中的整数设置为默认无符号?大多数时候我将它们设置为自动递增,并且不需要负值。我有办法做到这一点吗?
How can I set up integers in phpMyAdmin to be unsigned by default? Most times I am setting them to be auto-incremented, and I don't need the negative values. Is there a way I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这在 phpMyAdmin 的更高版本中可以使用“属性”选项来实现。
This is possible in the later version of phpMyAdmin using the Attributes option.
通过 UI 设置无符号整数。
不幸的是,默认情况下似乎没有办法做到这一点。但是,您可以检查多个列,然后单击“编辑”以通过 phpmyadmin UI 立即更改这些列,如下所示。
Setting integers unsigned via UI.
Unfortunately there doesn't seem to be a way to do this by default. However you can check multiple columns and click edit to change those at once via the phpmyadmin UI as shown below.
我认为通过 UI 这是不可能的...
您应该在 phpMyAdmin 源代码中编辑/实现它...
包含有关 phpMyAdmin 开发的附加信息的链接:链接
开发者 wiki 的链接:链接
你应该使用GIT 开始使用源代码。
您可以在那里获取源代码并实现该功能。
祝你好运!
I think that is not possible via UI ...
You should edit/implement it in the phpMyAdmin source code ...
A link with additional info about phpMyAdmin development: link
A link to developer wiki: link
You should use GIT to get working with the source code.
There you can get the source code and implement that feature.
Good luck!
将其添加到
common.inc.php
:在
js
文件夹中创建一个名为extension.js
的文件:使用 phpMyAdmin 3.4.2 进行测试。还设置了一些其他不错的默认值。
Add this to
common.inc.php
:Create a file called
extension.js
in thejs
folder:Tested with phpMyAdmin 3.4.2. Also sets a few other nice defaults.