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

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