mysql 中的位问题
resultset = statemet.executequery("select shift+0 from sportman");
string x = resultset.getstring("shift");
但第二行抛出异常:
Column 'shift' not found.
shift is bit(8)
并且我想将其显示为'000101'
。
resultset = statemet.executequery("select shift+0 from sportman");
string x = resultset.getstring("shift");
but second line throw exception:
Column 'shift' not found.
shift is bit(8)
and i want to show it to form '000101'
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
但结果并未用零填充到您想要的宽度。您稍后可能需要自己添加。
Result is not zero-padded to the width you want though. You may need to add that yourself later.