Hello, i have tried many solution for solving this problem. I want to passing field in database to list view with stored procedure. Any Body please help me

example
Table A

  • name
  • Sex

and stored procedure just (select * from [A])

how i can pass the field to list view

Recommended Answers

All 3 Replies

Let me see if I got this straight. You want to retrieve data from a stored procedure and display them using a list view.

Show us what you've done already and we'll help you get it done.

I have done

connection to sql

and

Public Function selectAllTblTDL() As SqlDataReader
            connectionDB = New controller.connection
            myCommand = New SqlCommand("selectAllTblTDL", connectionDB.openConnection(retMessage))
            result = myCommand.ExecuteReader

            Return result

        End Function
ALTER PROCEDURE [selectAllTblTDL]

AS SELECT * FROM [tbl_TDL]
	RETURN

Those are my function and store procedure, i have done it. And now i want to passing it to listview1

I have solved problem, thanks all

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.