Example #1
0
        //Creates a SQL table from datatable information
        private void createDataTableToSQL(DataTable dt)
        {
            SQLPush sqlPush = new SQLPush();

            sqlPush.createTableQuery(dt, true);
            sqlPush.insertToTable(dt);
        }
Example #2
0
        //Puts all data from a datatable into the SQL
        private void dataTableToSQL(DataTable dt)
        {
            SQLPush sqlPush = new SQLPush();

            sqlPush.insertToTable(dt);
        }