将 XML 导入到 MS Access 2003 时,布尔变量被作为字符串导入

发布于 2024-07-22 04:53:31 字数 146 浏览 9 评论 0原文

我正在尝试通过“文件”>“获取外部数据”>“导入”将 XML 文件导入 MS Access 2003。 我想将一个字段导入为布尔值。 我已经预先构建了表格并仅导入数据。 我很困惑 XML 中的布尔值应该是什么,以便它可以轻松地作为 aceess 布尔变量导入。

I am trying to import an XML file into MS Access 2003, through File>Get External Data>Import. And I want to import a field as boolean. I have pre-built the tables and importing the data only. I am confused that what should be value of boolean in XML so that it can easily get imported as aceess boolean variable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弃爱 2024-07-29 04:53:31

嗯,我会用 0 表示 false,-1 表示 true。 但我怀疑它也会转换这些对......

False Value   True Value 
  0            -1 
  0            {any non-zero integer} 
  False        True 
  No           Yes  

Hmmm I'd go with 0 for false and -1 for true. But I suspect it would also convert these pairs as well...

False Value   True Value 
  0            -1 
  0            {any non-zero integer} 
  False        True 
  No           Yes  
醉生梦死 2024-07-29 04:53:31

您可以在 此处找到有关各种数据类型的正确 XML 表示的信息。 对于布尔值,您可以使用“true”或“1”表示 true,使用“false”或“0”表示 false。 另请注意日期、时间和日期时间的正确表示。

You can find information about proper XML representation of various data types here. For boolean, you can use "true" or "1" for true and "false" or "0" for false. Note also the proper representation for date, time, and datetime.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文