|
-
Sep 16th, 2002, 10:15 AM
#1
Thread Starter
Member
How many items are there in my dataset??
Number of items???
I use the following code to retreive records from an ACCESS database and everything works fine. How do I find out how many items there are in the dataset or the dataadapter??
________________________________________________
strsql = "select * from spis where titel like '%" & TextBox1.Text & "'"
objda = New OleDb.OleDbDataAdapter(strsql, objconn)
ds.Clear()
DataGrid1.DataSource = ds
objda.Fill(ds)
DataGrid1.DataBind()
----------------------------------------------------------------------
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|