Migrating data from Access 97 to Postgres database
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

29 lignes
786 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace acc_pgsql
  6. {
  7. class Program
  8. {
  9. static List<string> _statements;
  10. static void Main(string[] args)
  11. {
  12. _statements = new List<string>();
  13. Step1();
  14. Console.ReadLine();
  15. }
  16. /// <summary>
  17. /// Initialize seed data for Status, PartType, PartCode, Location,
  18. /// </summary>
  19. static void Step1()
  20. {
  21. string path = Environment.CurrentDirectory;
  22. path = System.IO.Path.Combine(path, "InitialSeedData.sql");
  23. string sql = FileHelper.ReadFile(path);
  24. //store this in list of strings to execuet in order
  25. }
  26. }
  27. }