Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的手机中使用 Pydroid3 应用程序从 android 访问 postgreSQL 数据库。要访问 postgreSQL 数据库我需要导入 psycopg2,但 android 不支持这个。谁能建议解决这个问题的方法。
Android除非它是本地连接,否则通常不会与您建立硬数据库连接。
Android
psycopg2由于您不应该使用JDBC. 您应该通过 a 与远程数据库通信RESTful API,这意味着服务器向您发送它自己从数据库中检索的数据。
psycopg2
JDBC
RESTful API
因此,下一步将创建一个处理GET请求的网站/服务。所以你的应用可以和它对话,它也可以和数据库对话。
GET