This should be dead simple - I have a BO called boAllPeople with a data access method called GetAllPeople():
{
loCommand.CommandType =
loCommand.CommandText =
}
Here is the code in prcListAllPeople:
ALTER
AS
BEGIN
END
IF
RETURN
There are no records in my error_log table.
This is how my listview is configured
Columns collection has 3 columns: 1 for first name, last name and primary phone.
PopulationDataSource = boAllPeople.GetAllPeople()
Display fields are
{0} - last_nme
{1} - first_nme
{2} - contact_dtl
Tag is people_id
Columns are the same as what is in the columns collection and population type is formatted string.
PopulateOnFormLoad = FormLoad
I have verified that the view does have a record in it. However, when my form comes up, the list view contains the column headings in the first row where the single record in the view should be.
Can anyone tell me what I am doing wrong?
Thanks!