我需要将 MySQL 数据类型映射到 .net (CLR) 数据类型

发布于 2024-10-20 21:13:34 字数 86 浏览 6 评论 0原文

有谁有映射到 .Net (CLR) 数据类型的 MySQL 数据类型的完整表。 StackOverflow 上有关于同一主题的问题,但给出的信息不一致且无用。

Does anyone have a complete table of MySQL datatypes mapping to .Net (CLR) datatypes. There are question on the same topic on StackOverflow but the information given is inconsistent rather useless.

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

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

发布评论

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

评论(3

心的憧憬 2024-10-27 21:13:34

这是到 Java 类型的映射,很容易将其转换为 .NET 映射...

http://dev.mysql.com/doc/connector-j/en/connector-j-reference-type-conversions.html

Here is a mapping to Java types, it is easy to convert this to .NET mapping...

http://dev.mysql.com/doc/connector-j/en/connector-j-reference-type-conversions.html

楠木可依 2024-10-27 21:13:34

提示:您可以通过创建具有 MySqltyped 列的 MySql 表,然后从 .net 提供程序检索它来轻松创建映射表。然后只需内省列的 .net 类型(在 DataReader 或 DataTable 中)。

Just a tip: You may easily create the mapping table by creating a MySql table with MySqltyped columns and then retrieving it from the .net provider. Then just introspect the .net type (in the DataReader or DataTable) of the column.

挽心 2024-10-27 21:13:34

我发现这个映射,似乎是2013年的(blogspot.dk)

mapping

我可以添加 MySql tinyint(1)< /strong> 自动映射到 .Net 中的 boolean

I found this mapping, seems to be from 2013 (blogspot.dk)

mapping

And I can add that MySql tinyint(1) is mapped automatically to boolean in .Net

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