我们如何从 postgresql 中的数据库函数将数据写入文件?
我搜索了很多方法,但没有得到有关在java程序中调用数据库函数(postgresql)时如何将数据写入文件的信息。请澄清我这一点......
提前致谢。
i searched many ways but i didn't get the information about how to write the data to a file when call the database function (postgresql) in the java program.. please clarify me on this....
thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您希望将文件写入数据库服务器,而不是应用程序服务器(Java 程序运行的位置)。
您需要使用不受信任语言(例如 python 或 C)实现存储函数。然后,您可以从 Java 或从现有函数中调用该函数。
这是一个 示例我在谷歌搜索时发现:
这是另一个:
http://www.leidecker .info/pgshell/Having_Fun_With_PostgreSQL.txt
这里还给出了一个(非常)简短的描述:
http://archives.postgresql.org/pgsql-novice/2007-01 /msg00010.php
I assume you want the file to be written on the database server, not the application server (where the Java Program is running).
You need to implement a stored function in an untrusted language (like python or C). You would then call that function either from Java or from within the already existing function.
Here is an example that I found when googling for this:
Here is another one:
http://www.leidecker.info/pgshell/Having_Fun_With_PostgreSQL.txt
A (very) short description is also given here:
http://archives.postgresql.org/pgsql-novice/2007-01/msg00010.php