示例#1
0
        }//TestDBI_T_mapping_note_Write_to_DB

        //-------------------------------------------------------------------------------------------
        /// <summary>
        /// TestDBI_T_mapping_note_Read_from_DB -- read from DB
        /// </summary>
        static void TestDBI_T_mapping_note_Read_from_DB()
        {
            Console.WriteLine("  --START: TestDBI_T_mapping_note_Read_from_DB");

            SQLServerDB.mapping_note_Table myTable = new SQLServerDB.mapping_note_Table();

            int iRows = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows.ToString());

            Console.WriteLine("Fill the table in RAM from the SQLServer Database table");
            myTable.ReadItemListFromDatabase();
            myTable.Show();
            if (myTable.itemList.Count != iRows)
            {
                Console.WriteLine("Error.  myTable.itemList.Count != myTable.CountRows." + " should be the same ReadItemListFromDatabase ()");
            }
            else
            {
                Console.WriteLine("OK.  After ReadItemListFromDatabase()");
            }

            Util.pause();
            Console.WriteLine("  --DONE: TestDBI_T_mapping_note_Read_from_DB");
        }//TestDBI_T_mapping_note_Read_from_DB
示例#2
0
        /// <summary>
        /// TestDBI_T_mapping_note_T4 --
        /// </summary>
        static void TestDBI_T_mapping_note_T4()
        {
            Console.WriteLine("  --START: TestDBI_T_mapping_note_T4");

            //Construct a brand new myTable in RAM
            SQLServerDB.mapping_note_Table myTable = new SQLServerDB.mapping_note_Table();
            myTable.itemList = make_mapping_note_list_4();
            int iRowsStart = myTable.itemList.Count;


            //Count SQLServerDB mapping_note table rows before clearing
            int iRows = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows.ToString());

            Console.WriteLine("  --before clear SQLServer database table");
            Util.pause();

            myTable.Clear_Database_Table();
            int iRows2 = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows2.ToString());
            Util.pause();

            foreach (SQLServerDB.mapping_note r in myTable.itemList)
            {
                myTable.WriteItemToDatabase(r);
            }
            Console.WriteLine("after writing to SQLServerDB");
            Util.pause();

            int iRows3 = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows3.ToString());
            Util.pause();

            Console.WriteLine("---update the table");

            //revise the myTable contents
            myTable.itemList.Clear();

            myTable.itemList = make_mapping_note_list_4B();

            Console.WriteLine("BEFORE the table update");
            Util.pause();
            myTable.UpdateItemListToDatabase();
            Console.WriteLine("AFTER the table update");
            Util.pause();


            for (int i = 4; i <= 6; i++)
            {
                myTable.Clear_Database_Table_By_mappingId(i);
            }
            Console.WriteLine("AFTER the table record deletions:  mapping_noteI={4,5,6}");
            Util.pause();

            Console.WriteLine("  --DONE: TestDBI_T_mapping_note_T4");
        }
示例#3
0
        }//TestDBI_T_mapping_note_Read_from_DB

        /// <summary>
        /// TestDBI_T_mapping_note_T3 -  clear the SQLServer mapping_note table, write some demo data to SQLServer DB,
        /// query the affirmatin table by Project ID,
        /// </summary>
        static void TestDBI_T_mapping_note_T3()
        {
            Console.WriteLine("  --START: TestDBI_T_mapping_note_T3");

            //Construct myTable in RAM
            SQLServerDB.mapping_note_Table myTable = new SQLServerDB.mapping_note_Table();
            myTable.itemList = make_mapping_note_list_3();


            //Count SQLServerDB mapping_note table rows before clearing
            int iRows = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows.ToString());

            Console.WriteLine("  --before clear SQLServer database table");
            Util.pause();

            myTable.Clear_Database_Table();
            int iRows2 = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows2.ToString());
            Util.pause();

            myTable.WriteItemListToDatabase();
            Console.WriteLine("after writing to SQLServerDB");
            Util.pause();

            int iRows3 = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows3.ToString());
            Util.pause();

            int iSeek_ProjectID = 3;

            Console.WriteLine("seek item:  iSeek_ProjectID= " + iSeek_ProjectID);
            myTable.ReadItemListFromDatabase_ByProjectID(iSeek_ProjectID);

            Console.WriteLine("SEEK items found: myTable.itemList.Count =" + myTable.itemList.Count.ToString());

            SQLServerDB.mapping_note itemSeek = myTable.itemList[0];
            itemSeek.Show();

            Util.pause("visual inspection via SSMS?");

            Console.WriteLine("  --DONE: TestDBI_T_mapping_note_T3");
        }
示例#4
0
        static void TestDBI_T_mapping_note_T5()
        {
            Console.WriteLine("  --START: TestDBI_T_mapping_note_T5");

            //Construct a brand new myTable in RAM
            SQLServerDB.mapping_note_Table myTable = new SQLServerDB.mapping_note_Table();
            myTable.itemList = make_mapping_note_list_4();
            int iRowsStart = myTable.itemList.Count;

            //Count SQLServerDB mapping_note table rows before clearing
            int iRows1 = myTable.CountRows();

            Console.WriteLine("myTable.CountRows = " + iRows1.ToString());

            myTable.Clear_Database_Table();
            int iRows2 = myTable.CountRows();

            if (iRows2 != 0)
            {
                Console.WriteLine("Error! iRows2=" + iRows2 + ".  After Clear_Database_Table should be zero");
            }

            myTable.WriteItemListToDatabase();

            int iRows3 = myTable.CountRows();

            if (iRows3 != iRowsStart)
            {
                Console.WriteLine("Error! iRows3=" + iRows3 + ".  After WriteItemListToDatabase should be " + iRowsStart);
            }
            else
            {
                Console.WriteLine("OK. CountRows=" + iRows3 + " After WriteItemListToDatabase");
            }

            Util.pause("examine table content with SSMS");


            Console.WriteLine("  --DONE: TestDBI_T_mapping_note_T5");
        }