编程逻辑从VB6升级到Vb.net

发布于 2024-09-03 04:19:39 字数 129 浏览 4 评论 0原文

前一段时间我一直在使用 vb6 进行编程,我使用开放的 SQL Server 连接和命令对象来进行数据库事务。我也一直在 vb.net 中寻找类似的方法,但没有找到任何起点。

我们如何在 vb.net 应用程序中进行类似的工作?

I have been programming in vb6 for few time ago and i used open SQL Server connection and command objects to make database traansactions. I have been searching for similar approaches in vb.net too but not finding any starting point.

How can we work similarly in vb.net application?

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

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

发布评论

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

评论(2

微暖i 2024-09-10 04:19:39

我认为您正在寻找 SqlConnectionSqlCommand
SqlCommand 的 MSDN 页面显示了如何使用它们的示例:

http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx

I think you're looking for SqlConnection and SqlCommand.
The MSDN page for SqlCommand shows a sample for how they can be used:

http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx

鹤舞 2024-09-10 04:19:39

我建议尽可能使用 SqlDataReader 来检索数据。这是一个更快的选择,而且听起来微软并没有投资于数据集的未来。

using (SqlConnection conn = new SqlConnection(connString))
{

    conn.Open();

    if (conn.State == ConnectionState.Open)
    {


        string sql =   "Select FirstName, LastName from Customers";
        SqlCommand cmd = new SqlCommand(sql, conn);

        SqlDataReader reader = cmd.ExecuteReader();

        if (reader != null)
        {


            while (reader.Read())
            {

                Customer cust = new Customer();
                cust.FirstName = reader["FirstName"].ToString();
                cust.LastName= reader["LastName"].ToString();
                collection.Add(cust);

            }

            reader.Close();

        }

        conn.Close();

    }
}

I would recommend using the SqlDataReader when possible for retrieving data. It is a faster option, and it sounds like Microsoft is not investing in the future of DataSets.

using (SqlConnection conn = new SqlConnection(connString))
{

    conn.Open();

    if (conn.State == ConnectionState.Open)
    {


        string sql =   "Select FirstName, LastName from Customers";
        SqlCommand cmd = new SqlCommand(sql, conn);

        SqlDataReader reader = cmd.ExecuteReader();

        if (reader != null)
        {


            while (reader.Read())
            {

                Customer cust = new Customer();
                cust.FirstName = reader["FirstName"].ToString();
                cust.LastName= reader["LastName"].ToString();
                collection.Add(cust);

            }

            reader.Close();

        }

        conn.Close();

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