我在将这些字段插入另一个数据库时遇到问题,如何建立与其他数据库的连接?
// 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));
答案 0 :(得分:1)
假设您使用的是Postgres而不是MySQL
DBLINK
https://www.postgresql.org/docs/9.1/static/dblink.html
和
https://www.postgresql.org/docs/9.2/static/contrib-dblink-exec.html
更具体地说。