VB.NET数据库实际范例解读

如今的一个程序开发中基本上都需要对数据库进行一定的操作,才能完成整个程序的完善性。在这里我们会了解到有关VB.NET数据库的一些操作方面的代码实现,方便大家对这一方面的解读。#t#

VB.NET数据库代码示例:

  1. Imports System  
  2. Imports System.Data  
  3. Imports System.Data.SqlClient  
  4. public Class MainClassclass MainClass  
  5. Shared Sub Main()Sub Main()  
  6. Dim thisConnection As New SqlConnection
    ("server=(local)\SQLEXPRESS;" & _  
  7. "integrated security=sspi;database=
    MyDatabase")  
  8. ' Sql Query   
  9. Dim sql As String = "SELECT * 
    FROM Employee " 
  10. Dim insertSql As String = "INSERT
     INTO Employee " & _  
  11. "(ID, FirstName, LastName)VALUES" & _  
  12. "(@ID, @FirstName, @LastName)"  
  13. Try  
  14. ' Create Data Adapter  
  15. Dim da As New SqlDataAdapter  
  16. da.SelectCommand = New SqlCommand
    (sql, thisConnection)  
  17. ' Create and fill Dataset  
  18. Dim ds As New DataSet  
  19. da.Fill(ds, "Employee")  
  20. ' Get the Data Table  
  21. Dim dt As DataTable = ds.Tables
    ("Employee")  
  22. ' Display Rows Before Changed  
  23. Console.WriteLine("Before altering 
    the dataset")  
  24. For Each row As DataRow In dt.Rows  
  25. Console.WriteLine("{0} | {1} | {2}", _  
  26. row("ID").ToString().PadRight(10), _  
  27. row("FirstName").ToString().PadRight(10), _  
  28. row("LastName"))  
  29. Next  
  30. ' Add A Row  
  31. Dim newRow As DataRow = dt.NewRow()  
  32. newRow("FirstName") = "Edna"  
  33. newRow("LastName") = "Everage"  
  34. newRow("ID") = "2"  
  35. dt.Rows.Add(newRow)  
  36. ' Display Rows After Alteration  
  37. Console.WriteLine("=========")  
  38. Console.WriteLine("After 
    altering the dataset")  
  39. For Each row As DataRow In dt.Rows  
  40. Console.WriteLine("{0} | {1} | {2}", _  
  41. row("ID").ToString().PadRight(10), _  
  42. row("FirstName").ToString().PadRight(10), _  
  43. row("LastName"))  
  44. Next  
  45. ' Insert employees  
  46. ' 1. Create command  
  47. Dim insertCmd As New SqlCommand
    (insertSql, thisConnection)  
  48. ' 2. Map parameters  
  49. insertCmd.Parameters.Add("@FirstName", _  
  50. SqlDbType.NVarChar, 10, "FirstName")  
  51. insertCmd.Parameters.Add("@LastName", _  
  52. SqlDbType.NVarChar, 20, "LastName")  
  53. insertCmd.Parameters.Add("@ID", _  
  54. SqlDbType.Int, 15, "ID")  
  55. ' 3. Insert employees  
  56. da.InsertCommand = insertCmd 
  57. da.Update(ds, "Employee")  
  58. Catch ex As SqlException  
  59. ' Display error  
  60. Console.WriteLine("Error: " 
    & ex.ToString())  
  61. Finally  
  62. ' Close Connection  
  63. thisConnection.Close()  
  64. Console.WriteLine("Connection 
    Closed")  
  65. End Try  
  66. End Sub  
  67. End Class 

以上就是对VB.NET数据库的应用代码示例进行的详细解读,希望对大家有所帮助。

分享题目:VB.NET数据库实际范例解读
本文URL:http://www.mswzjz.cn/qtweb/news28/382828.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能