Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to check the end of the record in Datareader?

Answer Posted / anitha

Dim cmdstr As String
Dim cmdsql As New SqlClient.SqlCommand
Dim consql As SqlConnection = New
SqlConnection(ConfigurationSettings.AppSettings("ConnectionString"))
cmdstr = "select top 1 columnName from tbl_Sample order by
ColumnName desc "
cmdsql = New SqlCommand(cmdstr, consql)
If consql.State = ConnectionState.Closed Then
consql.Open()
Dim drsql As SqlDataReader
drsql = cmdsql.ExecuteReader()
Do While drsql.Read
any Control value= drsql.Item(0)
Loop
drsql.Close()

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In which event of the page viewstate is available?

927


Describe the Server Control Events of ASP.NET?

1228


Define application state variable and session state variable?

1044


What is data grid view in asp.net?

991


What are ASP.NET Web Forms? How is this technology different than what is available though ASP?

1740


Which is faster union or union all?

1050


What are the different types of cookies in asp.net?

1072


Define web services in asp.net.

1122


What is the exact purpose of http handlers?

1060


Is asp.net a programming language or framework?

1053


What is __ requestverificationtoken?

1058


How do you sign out from forms authentication?

1107


Explain the difference between Repeater and Data list control in ASP.NET?

1152


How do we implement bundling in MVC?

1152


Where is the view state data stored in asp net?

1069