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

            table.Add("ID", "1000");
            view.Insert(table, null);
        }
Example #2
0
		public void DataSourceView_Insert ()
		{
			// ExecuteInsert must be implemented at first 
			Hashtable table = new Hashtable ();
			PokerDataSource ds = new PokerDataSource ();
			PokerDataSourceView view = new PokerDataSourceView (ds, "View");
			table.Add ("ID", "1000");
			view.Insert (table, null);
		}