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

ExecuteScalar() public method

public ExecuteScalar ( string sSQL, CommandType oType ) : object
sSQL string
oType CommandType
return object
		public object ExecuteScalar(string sSQL, CommandType oType)
		{
			ValidateConnection();

			m_oCommand.CommandText	= sSQL;
			m_oCommand.CommandType	= oType;
			return m_oCommand.ExecuteScalar();
		}

Same methods

DBWrapper::ExecuteScalar ( string sSQL ) : object