web 2.0

ASP.NET(vb.net) & Oracle Random Rows Record

ASP.NET(vb.net) & Oracle Random Rows Record - This is  example scripts how to use ASP.NET random rows data or record from Oracle database.

ShotDev Focus:
- ASP.NET(vb.net) & Oracle Random Record

Example

AspNetOracleRandomRecord.aspx

  1. <%@ Import Namespace="System.Data"%>  
  2. <%@ Import Namespace="System.Data.OracleClient"%>  
  3. <%@ Page Language="VB" %>  
  4. <script runat="server">  
  5.   
  6. Dim objConn As OracleConnection  
  7. Dim objCmd As OracleCommand  
  8.   
  9. Sub Page_Load(sender As Object, e As EventArgs)  
  10. Dim strConnString As String  
  11. strConnString = "Data Source=TCDB;User Id=myuser;Password=mypassword;"  
  12. objConn = New OracleConnection(strConnString)  
  13. objConn.Open()  
  14.   
  15. BindData()  
  16. End Sub  
  17.   
  18. Sub BindData()  
  19. Dim strSQL As String  
  20. strSQL = "SELECT * FROM ( SELECT * FROM customer ORDER BY dbms_random.value ) WHERE rownum <= 3"  
  21.   
  22. Dim dtReader As OracleDataReader  
  23. objCmd = New OracleCommand(strSQL, objConn)  
  24. dtReader = objCmd.ExecuteReader()  
  25.   
  26. '*** BindData to Repeater ***'  
  27. myRepeater.DataSource = dtReader  
  28. myRepeater.DataBind()  
  29.   
  30. dtReader.Close()  
  31. dtReader = Nothing  
  32.   
  33. End Sub  
  34.   
  35. Sub Page_UnLoad()  
  36. objConn.Close()  
  37. objConn = Nothing  
  38. End Sub  
  39.   
  40. Sub myRepeater_ItemDataBound(ByVal sender As ObjectByVal e As RepeaterItemEventArgs) Handles myRepeater.ItemDataBound  
  41.   
  42. '*** CustomerID ***'  
  43. Dim lblCustomerID As Label = CType(e.Item.FindControl("lblCustomerID"),Label)  
  44. IF Not IsNothing(lblCustomerID) Then  
  45. lblCustomerID.Text = e.Item.DataItem("CustomerID")  
  46. End IF  
  47.   
  48. '*** Name ***'  
  49. Dim lblName As Label = CType(e.Item.FindControl("lblName"),Label)  
  50. IF Not IsNothing(lblName) Then  
  51. lblName.Text = e.Item.DataItem("Name")  
  52. End IF  
  53.   
  54. '*** Email ***'  
  55. Dim lblEmail As Label = CType(e.Item.FindControl("lblEmail"),Label)  
  56. IF Not IsNothing(lblEmail) Then  
  57. lblEmail.Text = e.Item.DataItem("Email")  
  58. End IF  
  59.   
  60. '*** CountryCode ***'  
  61. Dim lblCountryCode As Label = CType(e.Item.FindControl("lblCountryCode"),Label)  
  62. IF Not IsNothing(lblCountryCode) Then  
  63. lblCountryCode.Text = e.Item.DataItem("CountryCode")  
  64. End IF  
  65.   
  66. '*** Budget ***'  
  67. Dim lblBudget As Label = CType(e.Item.FindControl("lblBudget"),Label)  
  68. IF Not IsNothing(lblBudget) Then  
  69. lblBudget.Text = e.Item.DataItem("Budget")  
  70. End IF  
  71.   
  72. '*** Used ***'  
  73. Dim lblUsed As Label = CType(e.Item.FindControl("lblUsed"),Label)  
  74. IF Not IsNothing(lblUsed) Then  
  75. lblUsed.Text = e.Item.DataItem("Used")  
  76. End IF  
  77. End Sub  
  78.   
  79. </script>  
  80. <html>  
  81. <head>  
  82. <title>ShotDev.Com Tutorial</title>  
  83. </head>  
  84. <body>  
  85. <form id="form1" runat="server">  
  86. <asp:Repeater id="myRepeater" runat="server">  
  87. <HeaderTemplate>  
  88. <table border="1">  
  89. <tr>  
  90. <th>CustomerID</th>  
  91. <th>Name</th>  
  92. <th>Email</th>  
  93. <th>CountryCode</th>  
  94. <th>Budget</th>  
  95. <th>Used</th>  
  96. </tr>  
  97. </HeaderTemplate>  
  98. <ItemTemplate>  
  99. <tr>  
  100. <td align="center"><asp:Label id="lblCustomerID" runat="server"></asp:Label></td>  
  101. <td><asp:Label id="lblName" runat="server"></asp:Label></td>  
  102. <td><asp:Label id="lblEmail" runat="server"></asp:Label></td>  
  103. <td align="center"><asp:Label id="lblCountryCode" runat="server"></asp:Label></td>  
  104. <td align="right"><asp:Label id="lblBudget" runat="server"></asp:Label></td>  
  105. <td align="right"><asp:Label id="lblUsed" runat="server"></asp:Label></td>  
  106. </tr>  
  107. </ItemTemplate>  
  108. </asp:Repeater>  
  109. </form>  
  110. </body>  
  111. </html>  

Screenshot

ASP.NET(vb.net) & Oracle Random Rows Record
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.