简体   繁体   中英

Can I access 32 bit postgres database with 64 bit postgres application?

如果不执行转储和还原操作,我可以使用具有64位postgres可执行文件的现有32位postgres数据库吗?

Yes. The client and server communicate via tcp/ip.

If you use the libpq binary protocol you have to be aware of type sizes, but otherwise it makes no difference.

You must make sure the client has the correct architecture libpq / psqlODBC / whatever client driver you are using. It must be the architecture of the client app, not the server.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM