函数dblink复制并插入到另一个数据库中

时间:2017-08-22 17:39:37

标签: mysql sql postgresql function

我在将这些字段插入另一个数据库时遇到问题,如何建立与其他数据库的连接?

// formatter - use English locale for month and day of week
DateTimeFormatter fmt = DateTimeFormatter.ofPattern("EEE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH);

// current date/time in New York timezone
ZonedDateTime nowNy = ZonedDateTime.now(ZoneId.of("America/New_York"));
// convert to another timezone (US/Central)
ZonedDateTime nowCentral = nowNy.withZoneSameInstant(ZoneId.of("US/Central"));

// format dates
System.out.println(fmt.format(nowNy) + "--" + fmt.format(nowCentral));

1 个答案:

答案 0 :(得分:1)