Can some one HELP,
I am working in Chapter 10 of Beginning
VB.NET Database Programming. I am calling a function from my business logic layer and it gets a dataset schema and I see that the dataset is not null\nothing. But once I come back to the calling routine and I try to initialize a datarow to the dataset that was just created in the function call it is empty and I get an error because of the the null\nothing object reference, in this case the datarow object here is the code I am using
Code:
[:confused:]
'Get a new Project DataSet
objDataSet = objProjects.GetNewProjectDS()
'Initialize a datarow object from the Project DataSet
Dim objDataRow As DataRow = _
objDataSet.Tables("Project").NewRow
