In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article shows you how to use ADO.NET connection database, the content is concise and easy to understand, it can definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
If the command we execute with the Command object is a Select description that returns data, the Command object automatically generates a DataReader object. DataReader is a good friend for us to write ASP.NET pages, because we often take out the data from the data source and display it to the user, so we can use the DataReader object. We can receive it by passing in a variable of type DataReader when executing the Execute method.
The DataReader object simply reads only one record at a time, and can only be read-only, so it is very efficient and can reduce the network load. Because Command objects automatically generate DataReader objects, we just need to declare a variable referring to the DataReader object to receive it, and we don't need to use the New operator to generate it; another thing to note is that DataReader objects can only be used with Command objects, and the Connection object remains online during operation.
Case study: code implementation of ADO.NET connection to database
Experts on ADO.NET transaction processing
Analysis of working principle and Mechanism of ADO.NET dataset
Summary of basic steps of operating ADO.NET Access database
Instructions for using ADO.NET designer
After we get the DataReader object generated by the Command object executing the Execute method, we can extract and use the data in the record. DataReader didn't get any data back at first, so we need to use the Read method to get DataReader to read a piece of data first. If the DataReader object successfully gets the data, it returns True, and if no data is obtained, it returns False. In this way, we can use the Do While...Loop loop to get all the data, as shown in the following program:
Dim cmA As ADOCommand= New ADOCommand ("command string", "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=C:\ Inetpub\ wwwroot\ cr\ ch05\ MyWeb.mdb") Dim drA as ADODataReadercmA.ActiveConnection.Open () cmAcmA.CommandText= "Select * From Members" cmA.Execute (drA) the above is how ADO.NET connects to the database. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.