Migrating data from Access 97 to Postgres database
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace acc_pgsql
- {
- class Program
- {
- static void Main(string[] args)
- {
- PGSqlGenerator.GenerateSeedData("Status");
- }
- }
- }
|