python可以通过第三方模块连接postgresql. 比较有名的有psycopg2 和python3-postgresql(一)psycopg2ubuntu下安装sudo apt-get install python3-psycopg2创建一个test.py文件import psycopg2# ...
分类:
数据库 时间:
2015-12-06 17:27:12
阅读次数:
1358
这里假定Postgresql数据库已经装好。首先安装依赖的包$ sudo yum install python-devel postgresql-devel如果使用virtualenv,先source一下virtualenv下的“ . bin/activate”,然后运行$ pip install psycopg2修改settings.py文件DATABASES = {
'default':...
分类:
数据库 时间:
2015-09-21 10:39:17
阅读次数:
699
如下配置即可: 1 DATABASES = { 2 'default': { 3 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle...
分类:
数据库 时间:
2015-09-10 19:11:14
阅读次数:
161
vim ~/.bash_profileexport PATH=/Applications/Postgres.app/Contents/Versions/9.4/bin/:$PATHpip install psycopg2
分类:
编程语言 时间:
2015-08-10 21:58:25
阅读次数:
204
今天,在centos6.5下安装psycopg2,利用Python连接PostgreSQL数据库的时候,出现了一个undefined symbol: lo_truncate6的错误: django.core.exceptions.ImproperlyConfigured: Error loading...
分类:
其他好文 时间:
2015-08-05 21:46:02
阅读次数:
2092
settings.py:DATABASES={‘default‘:{‘ENGINE‘:‘django.db.backends.mysql‘,#Add‘postgresql_psycopg2‘,‘mysql‘,‘sqlite3‘or‘oracle‘.‘NAME‘:‘test‘,#Orpathtodatabasefileifusingsqlite3.‘USER‘:‘test‘,#Notusedwithsqlite3.‘PASSWORD‘:‘test‘,#Notusedwithsqlite3.‘HOST‘:‘‘,#..
分类:
数据库 时间:
2015-07-20 17:05:20
阅读次数:
190
一 Python 环境
1 在intelliJ安装python plugin
2安装 ?https://pypi.python.org/pypi/psycopg2
3 easy_install simplejson
4 在intelliJ新建一个empty项目
下载下来,解压,到其所在文件目录下执行
sudo python setup.py install
CatherinedeMacBook-Pro:D...
分类:
数据库 时间:
2015-05-11 18:05:31
阅读次数:
343
def getopenconnection(user='postgres', password='1234', dbname='dds_assgn1'): return psycopg2.connect("dbname='" + dbname + "' user='" + user + "' ...
分类:
数据库 时间:
2015-03-20 06:58:26
阅读次数:
185
Psycopg 是Python语言的PostgreSQL数据库接口。 它的主要优势在于完全支持Python DB API 2.0,以及安全的多线程支持。它适用于随时创建、销毁大量游标的、和产生大量并发INSERT、UPDATE操作的多线程数据库应用。Psycopg包内含 ZPsycopgDA,一个Z...
分类:
数据库 时间:
2015-02-26 18:30:39
阅读次数:
197
1. python connect postgrehttps://wiki.postgresql.org/wiki/Using_psycopg2_with_PostgreSQL Using psycopg2 with PostgreSQLimport psycopg2import pprin...
分类:
数据库 时间:
2015-01-28 13:00:13
阅读次数:
172