E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
cx_Oracle
cx_Oracle
的"Unable to acquire Oracle environment handle"异常
阅读更多先发一下牢骚,在对数据库的访问上,python跟java的jdbc相比,还是有不少差距的,比如访问Oracle,虽然有比较成熟的
cx_Oracle
,但是其安装和发布实在太复杂了,也顺便验证了一个道理
agile_boy
·
2011-03-14 23:00
Oracle
Linux
Python
OS
JDBC
cx_Oracle
的"Unable to acquire Oracle environment handle"异常
先发一下牢骚,在对数据库的访问上,python跟java的jdbc相比,还是有不少差距的,比如访问Oracle,虽然有比较成熟的
cx_Oracle
,但是其安装和发布实在太复杂了,也顺便验证了一个道理
agile_boy
·
2011-03-14 23:00
oracle
linux
python
jdbc
OS
python操作oracle
首先需要引入
cx_Oracle
这个模块,下载地址为: http://cx-oracle.sourceforge.net/ 要根据oracle与python版本号和系统类型选择相应的下载,安装也很简单
chembo
·
2011-03-14 17:00
oracle
.net
python
cx_Oracle
中文乱码问题解决
oracle数据库版本是10g,字符集是AL32UTF8. 编写的python脚本中需要加入如下几句: import os os.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8' 这样可以保证select出来的中文显示没有问题。 要能够正常的insert和update中文,还需要指定python源文件的字符集密码和
jun.zhou
·
2011-03-10 21:00
oracle
python
OS
脚本
python之oracle连接
cx_Oracle
1,根据平台下载http://cx-oracle.sourceforge.net/安装包2,在windows下安装cx_Oracle-5.0-10g.win32-py2.6.msi3,如果报DLL加载失败的错误错误,请下载http://download.csdn.net/source/3080197及http://download.csdn.net/source/3080200,解压把其中全部文件
liuzhoulong
·
2011-03-10 17:00
cx_Oracle
中插入blob、date類型資料
#blobimportcx_Oracledb=cx_Oracle.connect('delphitest/delphitestpass@yyora85')cursor=db.cursor()f1=open(r'd:/img.jpg','rb')data=f1.read()pic_data=cx_Oracle.Binary(data)cursor.execute("insertintopnl_pic
liukeforever
·
2011-03-09 14:00
oracle
Date
insert
oracle nchar
cx_Oracle
NLS_CHARACTERSET=ZHT16MSWIN950NLS_NCHAR_CHARACTERSET=AL16UTF16 select,insertnchar欄位要使用N'犇'select*fromfactestwherefac_uname=N'刘科'"insertintofactestvalues('115','111',N'犇')9i使用N'犇'有問題,10g以上則沒有問題 pytho
liukeforever
·
2011-03-08 14:00
Oracle in Python
First:下载安装
cx_Oracle
http://cx-oracle.sourceforge.net/ 注意对应你的oracle客户端版本和python版本 Second:拷贝文件
songbin0201
·
2011-03-03 18:00
oracle
C++
c
python
C#
Oracle in Python
First:下载安装
cx_Oracle
http://cx-oracle.sourceforge.net/ 注意对应你的oracle客户端版本和python版本 Second:拷贝文件
songbin0201
·
2011-03-03 18:00
oracle
C++
c
python
C#
cx_Oracle
使用方法
正确安装好
cx_oracle
之后,要使用它来连接到oracle数据库进行操作,具体应该分3步走:第一步:导入
cx_Oracle
,建立连接>>>importcx_Oracle #导入模块>>>db
liukeforever
·
2011-03-03 13:00
oracle
python
Module
table
insert
Types
cx_Oracle
的安裝及問題說明
1、下裝
cx_Oracle
的安裝程式http://cx-oracle.sourceforge.net/ 2、要下載instantclient-basic-win32-10.2.0.5.zip注意有兩個版本
liukeforever
·
2011-03-03 11:00
oracle
python
Access
linux环境下
cx_Oracle
的“ImportError: No module named
cx_Oracle
”错误。
环境:redhat AS + python2.7 + oracle instant client +
cx_oracle
oracle instant client10.2.4
heipark
·
2011-01-03 13:00
oracle
linux
.net
python
redhat
Python2.6
Cx_Oracle
Linux下编译安装
(一)Python2.6安装 1.下载Python2.6.X版本的源码包,这里采用平台编译安装。 Python-2.6.4.tar.bz2 2.解压缩,使用J参数解压bigz2类型的压缩文件 tar -jxvfPython-2.6.4.tar.bz2 cd Python-2.6.4 3.配置编译参数 注意:加上–enable-shared参数,否则不会生成libpython2.6.so.1
双宇
·
2010-12-20 21:00
LOB variable no longer valid after subsequent fetch
cx_oracle
读取oracle wm_concate函数操作过后的长文本clob字段,当使用fetchall或者fetchmany读取数据时,报上面的错 参考下面的文档,发现只能使用下面2种方式中的任一种来操作数据
desert3
·
2010-12-01 10:00
html
oracle
.net
python
Access
LOB variable no longer valid after subsequent fetch
cx_oracle
读取oracle wm_concate函数操作过后的长文本clob字段,当使用fetchall或者fetchmany读取数据时,报上面的错 参考下面的文档,发现只能使用下面2种方式中的任一种来操作数据
desert3
·
2010-12-01 10:00
html
oracle
.net
python
Access
cx_Oracle
访问报错的问题
cx_Oracle
安装好以后能导包,有的访问不了(windows下使用
cx_Oracle
必须是python2.6及以上版本) 暂时处理办法:
cx_Oracle
在 windows下访问需要这个包
duan1823a
·
2010-11-08 10:00
oracle
c
windows
MyEclipse
python
cx_Oracle
使用方法[转]
From:http://hi.baidu.com/piter2010/blog/item/47bbbacbfa0efe16be09e6a0.html 正确安装好
cx_oracle
之后,要使用它来连接到
海上月明
·
2010-11-02 18:00
cx_Oracle
找不到libclntsh.so.10.1错误
linux环境下安装oracle,使用python调用,安装
cx_Oracle
后报错如下:查阅多方资料后找到原因。
magic_yao
·
2010-10-21 20:00
oracle
linux
python
python连接oracle
//cx-oracle.sourceforge.net/下载Windows x86 Installer (Oracle10g, Python 2.5) 安装以后 在python命令行中import
cx_Oracle
desert3
·
2010-09-29 13:00
oracle
.net
windows
python
python连接oracle
//cx-oracle.sourceforge.net/下载Windows x86 Installer (Oracle10g, Python 2.5) 安装以后 在python命令行中import
cx_Oracle
desert3
·
2010-09-29 13:00
oracle
windows
.net
python
cx_Oracle
ImportError: DLL load failed: 找不到指定的模块 解决
Windows7Python2.6.2cx_Oracle5.0.4OracleInstantClient10.2.0 a)常规方法解压OracleInstantClient文件到指定目录b)设置环境变量c)设置tnsnames.orad)pl/sqldeveloper可以登录远程Oracle数据库 安装
cx_Oracle
cn_popeye
·
2010-09-04 01:00
oracle
windows
python
Module
dll
import
cx_Oracle
ImportError: DLL load failed: 找不到指定的模块 解决
环境: Windows7 Python 2.6.2
cx_Oracle
5.0.4 Oracle Instant Client 10.2.0 a)常规方法解压Oracle Instant
cn.popeye
·
2010-09-04 01:00
oracle
my python 第一帖 访问oracle数据库
/usr/bin/env python##import
cx_Oracle
;import sys;import time,
zhanyingle_1981
·
2010-09-03 20:00
oracle
sql
python
脚本
D语言
在HP-UX下编译Python和
cx_Oracle
在HP-UX下编译Python和
cx_Oracle
(转) =========================================================== 作者: rainrhb
javachs
·
2010-09-02 16:00
oracle
c
python
OS
HP
cx_Oracle
脚本例子
根据总部提供的imsi,xim号,查询是否已成功办理业务。 做下笔记 #!/usr/bin/env python # encoding: utf-8 """ 总部白卡对账确认.py Created by rikugun on 2010-08-05. Copyright (c) 2010 TYDIC. All rights reserved
rikugun
·
2010-08-09 10:00
oracle
python
OS
脚本
cvs
[Win7]
cx_Oracle
找不到指定模块错误解决
Windows7Python2.6.2cx_Oracle5.0.4OracleInstantClient10.2.0a)常规方法解压OracleInstantClient文件到指定目录b)设置环境变量c)设置tnsnames.orad)pl/sqldeveloper可以登录远程Oracle数据库安装
cx_Oracle
cn_popeye
·
2010-08-06 15:00
Oracle
[Win7]
cx_Oracle
找不到指定模块错误解决
环境: Windows7 Python 2.6.2
cx_Oracle
5.0.4 Oracle Instant Client 10.2.0 a)常规方法解压Oracle Instant
cn.popeye
·
2010-08-06 15:00
oracle
cx_Oracle
安装记录(CentOS5.3+Python2.4)
环境:CentOS 5.364bitPython2.4cx_Oracle-5.0.4-10g-py24-1.x86_64.rpm 第一步:安装Oracle客户端---Oracleinstantclient 1.到Oracle官网下载Oracleinstantclient文件包,建议下载zip,因为我们只需要里面几个库文件。 http://www.oracle.com/technetwork/d
cn_popeye
·
2010-08-06 15:00
cx_Oracle
安装记录(CentOS5.3+Python2.4)
环境: CentOS 5.3 64bit Python 2.4 cx_Oracle-5.0.4-10g-py24-1.x86_64.rpm 第一步: 安装Oracle客户端 --- Oracle instant client 1.到Oracle官网下载Oracle instant client文件包,建议下载zip,因为我们只需要里面几个库文件。 http://www.
cn.popeye
·
2010-08-06 15:00
oracle
install Oracle instant client for linux HOWTO
for linux HOWTO Guide for: 1.install oracle instant client 2.install
cx_oracle
mineral
·
2010-07-28 16:00
oracle
linux
.net
python
python中
cx_Oracle
模块安装遇到的问题与解决方法
--=========================================================================== 我的实践过程: 1,将oci.dll文件(从oracle安装目录搜索)复制到python安装目录的Lib\site-packages下,如 C:\Python26\Lib\site-packages 2,添加环境变量: ORACLE_HOME
wangrui
·
2010-06-10 17:00
oracle
C++
linux
python
C#
cx_Oracle
说:Python访问Oracle并不难
标题很好的说明
cx_Oracle
的意义,但是就像Windows下访问Oracle那样麻烦一样,Debian中一样繁琐,本文将用尽量简单的过程介绍在Debian5中Python访问Oracle,但
cx_Oracle
ddr888
·
2010-05-16 23:00
查oracle数据及元组转字典
''' Created on 2009-12-24 @author: jizhong.yang ''' import
cx_Oracle
import sets myDsn = cx_Oracle.makedsn
yangjizhong24
·
2010-01-25 10:00
oracle
python
import
cx_Oracle
db = cx_Oracle.connect('hr', 'hrpwd', 'localhost:1521/XE') #db1 = cx_Oracle.connect
zhaoaiqing
·
2009-12-07 20:00
oracle
python
db2
Python之
cx_Oracle
操作Oracle数据库
Python之
cx_Oracle
操作Oracle数据库#encoding=utf-8importMySQLdbimportcx_Oracleorcon=cx_Oracle.connect("username
生命科学领域的专业信息解决方案!
·
2009-07-28 09:00
Python如何操作Oracle的Blob字段
最近在学习使用Python,操作Oracle数据库采用的是
cx_Oracle
模块。 对于基本字段,都可以正常操作。但是对于Blob字段,我试试好几次,都没成功。
pangyi
·
2009-06-30 19:00
oracle
sql
框架
python
orm
Python如何操作Oracle的Blob字段
阅读更多最近在学习使用Python,操作Oracle数据库采用的是
cx_Oracle
模块。对于基本字段,都可以正常操作。但是对于Blob字段,我试试好几次,都没成功。下面贴出测试代码,与大家讨论讨论。
pangyi
·
2009-06-30 19:00
Oracle
Python
SQL
ORM
框架
python中
cx_Oracle
模块安装遇到的问题与解决方法
--===========================================================================我的实践过程:1,将oci.dll文件(从oracle安装目录搜索)复制到python安装目录的Lib\site-packages下,如C:\Python26\Lib\site-packages2,添加环境变量:ORACLE_HOME=D:\or
fudh_123
·
2009-06-26 09:15
python
python中
cx_Oracle
模块安装遇到的问题与解决方法
--=========================================================================== 我的实践过程: 1,将oci.dll文件(从oracle安装目录搜索)复制到python安装目录的Lib\site-packages下,如 C:\Python26\Lib\site-packages 2,添加环境变量: O
fudehai001
·
2009-06-26 09:00
oracle
C++
linux
python
C#
python中
cx_Oracle
模块安装遇到的问题与解决方法
--=========================================================================== 我的实践过程: 1,将oci.dll文件(从oracle安装目录搜索)复制到python安装目录的Lib\site-packages下,如 C:\Python26\Lib\site-packages 2,添加环境变量: O
fudehai001
·
2009-06-26 09:00
oracle
C++
linux
python
C#
cx_Oracle
ORA-24315: 非法的属性类型的解决办法
安装Python3.0和
cx_oracle
,可是连接的时候出现下面的错误: cx_Oracle.DatabaseError: ORA-24315: 非法的属性类型 &
mineral
·
2009-06-02 13:00
oracle
心情不好,工作不顺,写个小例子鼓励一下自己
上个月.用wxPython和
cx_Oracle
写了个在Oracle上执行SQL的工具,
lyhapple
·
2009-04-06 23:00
oracle
sql
工作
python
wxPython
ubuntu下安装
cx_Oracle
Oracle 为 Ubuntu 用户设立了专门的 apt 源服务器,只需要在 /etc/apt/source.list 中添加一行: deb http://oss.oracle.com/debian unstable main non-free 即可。在运行 apt-get update 命令之前,还需要将该源
lingzantia
·
2009-04-01 14:00
oracle
sql
python
Debian
ubuntu
python中
cx_Oracle
模块安装遇到的问题与解决方法
安装或使用
cx_Oracle
时,需要用到Oracel的链接库,如libclntsh.so.10.1,否则会有各种各样的错误信息。
huzhenwei
·
2009-03-01 00:00
oracle
python
File
import
library
dependencies
Gentoo中,使用Django 连接 Oracle
You will also need the
cx_Oracle
driver, v
marlgl
·
2008-11-11 19:00
oracle
linux
.net
python
django
python 连接oracle
import
cx_Oracle
>>> conn = cx_Oracle.connect('user','0909',cx_Oracle.makedsn('192.168.1.176
stckiss
·
2008-11-11 17:00
html
oracle
.net
python
使用python连接oracle数据库
【1】首先下载驱动:(
cx_Oracle
)http://www.python.net/crew/atuining/
cx_Oracle
/不过要注意一下版本,根据你的情况加以选择。
flyingfalcon
·
2008-01-02 18:00
oracle
sql
python
测试
import
工具
CentOS下安装
cx_Oracle
阅读更多公司有项目需要用到python与Oracle,选择
cx_Oracle
做数据库驱动,在安装py2.4的rpm包时,它需要glibc2.4的支持,而CentOS只有glibc2.3,于是此方法放弃.
former
·
2007-08-21 13:00
Oracle
CentOS
Python
脚本
CentOS下安装
cx_Oracle
公司有项目需要用到python与Oracle,选择
cx_Oracle
做数据库驱动,在安装py2.4的rpm包时,它需要glibc2.4的支持,而CentOS只有glibc2.3,于是此方法放弃.接着使用
former
·
2007-08-21 13:00
oracle
centos
python
脚本
CentOS下安装
cx_Oracle
阅读更多公司有项目需要用到python与Oracle,选择
cx_Oracle
做数据库驱动,在安装py2.4的rpm包时,它需要glibc2.4的支持,而CentOS只有glibc2.3,于是此方法放弃.
former
·
2007-08-21 13:00
Oracle
CentOS
Python
脚本
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他