Data Management Object Model Reference

ADODataSet.GetDataSet Method

Returns a DataSet object. If a connection isn't allready open it will get opened. The DataSet is a disconnected fully updateable dataset. The caller(yes that's you) must call DataSet.Dispose() on the returned object and DataSource.Close() to clean up connections. Failure to cleanup will result in a hanging database connection thus reducing the number available in your connection pool.

Overload List

Returns a DataSet object. If a connection isn't allready open it will get opened. The DataSet is a disconnected fully updateable dataset. The caller(yes that's you) must call DataSet.Dispose() on the returned object and DataSource.Close() to clean up connections. Failure to cleanup will result in a hanging database connection thus reducing the number available in your connection pool.

public DataSet GetDataSet(string);

Returns a DataSet object. If a connection isn't allready open it will get opened. The DataSet is a disconnected fully updateable dataset. The caller(yes that's you) must call DataSet.Dispose() on the returned object and DataSource.Close() to clean up connections. Failure to cleanup will result in a hanging database connection thus reducing the number available in your connection pool.

public DataSet GetDataSet(string,string);

See Also

ADODataSet Class | SPSSMR.Data.Transformations Namespace