gpt4 book ai didi

.net - 在 C++/.NET 中使用 SqlConnection

转载 作者:太空宇宙 更新时间:2023-11-04 12:15:14 25 4
gpt4 key购买 nike

当我去 MSDN SqlConnection 类的页面,它仅显示 C# 和 VB 中的示例。为什么 MSDN 不显示 C++ 示例?

我特别感兴趣的是 C++ 示例如何解决 C++ 中缺少 using 关键字的问题。

最佳答案

嗯……看完之后What is the Managed C++ equivalent to the C# using statement似乎相当于:

using (SqlConnection connection = new SqlConnection(connectionString))
{
// SqlCommand and so...
}

实际上是:

{
SqlConnection conn(connectionString);

// SqlCommand and so...
}

这令人印象深刻,因为 C++ 并不“缺少”using 语句,而是完全消除了对它的需要!我认为 C#/VB 程序员没有充分认识到 C++ 的优势(我当然没有 :)。

关于.net - 在 C++/.NET 中使用 SqlConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8036453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com