|
Im trying to setup a class for a database connection with a routine that returns a dataset in visuall c++ but cannot get it to work. can anyone just explain how to create a new class/function that returns a dataset???
e.g.
DataSet * dbSet(); //header
DataSet * dbSet() //class
{
//create dataset
//fill dataset
return DataSet;
}
|
|
|
|
|
|
|
// |