PostgreSQL 9.1: Installing plpythonu/plpython3u (Python) in Windows

PostgreSQL 9.1: Installing plpythonu/plpython3u (Python) in Windows

Install plpython3u

If you're lucky, the following command will just work, and the Python language has been successfully installed:

Select All
1
CREATE EXTENSION plpython3u;

If you encounter the following error:

Select All
1
ERROR:  could not load library "C:/Program Files/PostgreSQL/9.1/lib/plpython3.dll": The specified module could not be found.

We have a little more work to do.

PostgreSQL 9.1 requires a VERY specific sub-version of the Python DLL: Python 3.2.x. (available here) Any other version (3.1.x, 3.3.x, or otherwise) will cause the installation of plpython3u to fail. In addition, PostgreSQL 9.1 unfortunately does not appear to ship with Python 2.x support either.

If Python 3.2.x is not installed, download and install it.

Browse to your Python 3.2.x installation directory. By default, this should be something similar to: C:\Python32. From here, navigate to the DDLs directory and locate a DLL named python3.dll.

In a separate window, browse to you PostgreSQL installation directory. By default, this should be something similar to: C:\Program Files\PostgreSQL\9.1. From there, navigate into the lib directory and copy the python3.dll from the other window into this directory. Rename the copied DLL from python3.dll topython32.dll.

Finally, attempt to run the CREATE EXTENSION command again:

Select All
1
CREATE EXTENSION plpython3u;

This time, you should receive the expected result; signalling the installation was successful.

Select All
1
CREATE EXTENSION

Testing Your plpython3u Extension

First, we need a stored procedure which utilizes the Python language:

Select All
1
2
3
4
5
6
7
DROP FUNCTION test_fn(a integer, b integer);
CREATE OR REPLACE FUNCTION test_fn(a integer, b integer)
RETURNS text AS $$
	result = object()
	import pickle
	return pickle.dumps({'a':a, 'b':b})
$$ LANGUAGE plpython3u

Now, let's query our new function:

Select All
1
SELECT test_fn(1,2)

You should receive a response similar to the following:

Select All
1
b'\x80\x03}q\x00(X\x01\x00\x00\x00aq\x01K\x01X\x01\x00\x00\x00bq\x02K\x02u.'
原地址 http://www.youlikeprogramming.com/2013/08/postgresql-9-1-installing-plpythonuplpython3u-python-in-windows/
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值