MWS.Data.DBWrapper.GetDataSet C# (CSharp) 메소드

GetDataSet() 공개 메소드

public GetDataSet ( string sSQL ) : DataSet
sSQL string
리턴 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