public void DataSourceView_Select()
        {
            // ExecuteSelect must be implemented at first
            Hashtable           table = new Hashtable();
            PokerDataSource     ds    = new PokerDataSource();
            PokerDataSourceView view  = new PokerDataSourceView(ds, "View");

            table.Add("ID", "1000");
            view.Select(new DataSourceSelectArguments(), null);
        }
Exemplo n.º 2
0
		public void DataSourceView_Select ()
		{
			// ExecuteSelect must be implemented at first
			Hashtable table = new Hashtable ();
			PokerDataSource ds = new PokerDataSource ();
			PokerDataSourceView view = new PokerDataSourceView (ds, "View");
			table.Add ("ID", "1000");
			view.Select(new DataSourceSelectArguments(), null);
		}