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.
从http://cx-oracle.sourceforge.net/html/module.html,我无法找到布尔的 cx Oracle 数据类型。
谢谢,
在 Oracle 数据库本身中没有这样的数据类型,尽管在 PL/SQL 中编码时有可用的 BOOLEAN 类型。当我需要数据库表中的 Yes/No 字段时,我使用 CHAR(1) 字段,该字段限制为“Y”或“N”;同样,如果我真的需要 True/False 值,我将使用 CHAR(1) 约束来保存“T”或“F”。
分享和享受。
Boolean 没有数据类型。但是,您可以使用 int(True) 或 int(False) 来执行相同的操作。