我们如何从 postgresql 中的数据库函数将数据写入文件?

发布于 2024-10-11 11:08:50 字数 91 浏览 0 评论 0原文

我搜索了很多方法,但没有得到有关在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哀由 2024-10-18 11:08:50

我假设您希望将文件写入数据库服务器,而不是应用程序服务器(Java 程序运行的位置)。

您需要使用不受信任语言(例如 python 或 C)实现存储函数。然后,您可以从 Java 或从现有函数中调用该函数。

这是一个 示例我在谷歌搜索时发现

CREATE FUNCTION makefile(text) 
RETURNS text AS 
$
  o=open("/path/to/file")
  o.write(args[0])
  o.close()
  return "ok"
$
LANGUAgE plpythonu;

这是另一个:

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:

CREATE FUNCTION makefile(text) 
RETURNS text AS 
$
  o=open("/path/to/file")
  o.write(args[0])
  o.close()
  return "ok"
$
LANGUAgE plpythonu;

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文