MWS.Data.DBWrapper.GetDataSet C# (CSharp) Method

GetDataSet() public method

public GetDataSet ( string sSQL ) : DataSet
sSQL string
return System.Data.DataSet
		public DataSet GetDataSet(string sSQL)
		{
			DataSet oData			= new DataSet();
			return GetDataSet(sSQL, CommandType.Text, oData);
		}

Same methods

DBWrapper::GetDataSet ( string sSQL, CommandType oType ) : DataSet
DBWrapper::GetDataSet ( string sSQL, CommandType oType, DataSet oData ) : DataSet