码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL PL/Python - Python Procedural Language 安装

时间:2015-07-25 12:21:54      阅读:488      评论:0      收藏:0      [点我收藏+]

标签:postgresql   plpython安装   plpython   

PL/Python - Python Procedural Language 安装

  • 查看系统提供plpython包(已经编译好的)。
[root@localhost ~]# dnf search python |grep postgresql
python3-postgresql.x86_64 : Connect to PostgreSQL with Python 3
python-storm-postgresql.x86_64 : PostgreSQL backend for python-storm
postgresql-plpython.x86_64 : The Python2 procedural language for PostgreSQL
postgresql95-plpython.x86_64 : The Python procedural language for PostgreSQL
postgresql94-plpython.x86_64 : The Python procedural language for PostgreSQL
postgresql-plpython3.x86_64 : The Python3 procedural language for PostgreSQL
postgresql94-python-debuginfo.x86_64 : Debug information for package
                                     : postgresql94-python
postgresql94-python.x86_64 : Development module for Python code to access a
python-testing.postgresql.noarch : Automatically setup a PostgreSQL testing
python3-testing.postgresql.noarch : Automatically setup a PostgreSQL testing

我用的是fedora22系统。postgresql-plpython.x86_64、postgresql-plpython3.x86_64是我们需要安装的(Python2和Python3版本都支持)。

  • 安装插件包
[root@localhost ~]# dnf install postgresql-plpython.x86_64
[root@localhost ~]# dnf install postgresql-plpython3.x86_64

  • 检查一下安装目录是否有插件:
-bash-4.3$ pwd
/usr/share/pgsql/extension
-bash-4.3$ ll |grep python
-rw-r--r--. 1 root root   351 6月  13 03:06 plpython2u--1.0.sql
-rw-r--r--. 1 root root   196 6月  13 03:06 plpython2u.control
-rw-r--r--. 1 root root   402 6月  13 03:06 plpython2u--unpackaged--1.0.sql
-rw-r--r--. 1 root root   351 6月  13 03:06 plpython3u--1.0.sql
-rw-r--r--. 1 root root   196 6月  13 03:06 plpython3u.control
-rw-r--r--. 1 root root   402 6月  13 03:06 plpython3u--unpackaged--1.0.sql
-rw-r--r--. 1 root root   347 6月  13 03:06 plpythonu--1.0.sql
-rw-r--r--. 1 root root   194 6月  13 03:06 plpythonu.control
-rw-r--r--. 1 root root   393 6月  13 03:06 plpythonu--unpackaged--1.0.sql
-bash-4.3$ 

plpython3u.control、plpython2u.control等已经有了。

  • pg数据库安装plpython扩展
CREATE EXTENSION plpython3u;
 CREATE EXTENSION plpython2u;

上述sql的执行可以在pgAdmin IDE工具里执行(有权限用户)。可以查看是否安装了扩展。

  • 试一下创建一个函数:
CREATE FUNCTION pymax (a integer, b integer)
  RETURNS integer
AS $$
  if a > b:
    return a
  return b
$$ LANGUAGE plpython3u;

执行一下:

select pymax(12,13);

输出13。


pgAdmin 查看已经安装的扩展图:

技术分享


错误处理:


错误处理错误: 无法打开扩展控制文件 "/usr/share/pgsql/extension/plpythonu3.control": 没有那个文件或目录

********** 错误 **********

错误: 无法打开扩展控制文件 "/usr/share/pgsql/extension/plpythonu3.control": 没有那个文件或目录SQL 状态: 58P01

上述错误表示插件安装包没能安装正确。必须确保pg扩展目录内有,才可以。


版权声明:本文为博主原创文章,未经博主允许不得转载http://blog.csdn.net/doctor_who2004。

PostgreSQL PL/Python - Python Procedural Language 安装

标签:postgresql   plpython安装   plpython   

原文地址:http://blog.csdn.net/doctor_who2004/article/details/47054719

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!