Exemplo n.º 1
0
        public void NewTableFromFile()
        {
            var dst = new GenericTabularDataStore(GetConnection().Clone(), m_conn.DatabaseName, null, null);

            dst.create_table = true;
            var wizard = new BulkCopyWizard(null, dst);

            wizard.FixedTarget = true;
            wizard.ShowDialogEx();
        }
Exemplo n.º 2
0
        public static void Run(ITabularDataStore source, ITabularDataStore target)
        {
            BulkCopyWizard wizard = new BulkCopyWizard(source, target);

            wizard.ShowDialogEx();
        }