- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
抱歉,我是 Python 新手,正在尝试使用 ConfigParser 模块。我正在尝试通过配置文件将 netezza 连接到 python。我收到错误 invalid user ,这是不正确的,因为我已经验证了用户 ID 和密码。如果我直接在脚本中使用它而不是使用 ConfigParser 模块,下面格式中提到的 conn 可以正常工作
conn = pyodbc.connect("DRIVER=
{NetezzaSQL};SERVER=netezzadev02.xxx.com;
PORT=5460;DATABASE=EDWxx;
UID=anxxx;PWD=kkkkk;")
但是当我使用 configparser,ini 文件并开始创建下面的代码时,我收到错误' pyodbc.OperationalError: ('08001', u'[08001] Invalid - user name (12) (SQLDriverConnect)')' 。我在下面解释我的代码。---先创建ini文件
import pyodbc
import configparser
config = configparser.ConfigParser()
config['NETEZZA'] = {'DRIVER': 'NetezzaSQL',
'SERVER': 'netezzadev02.xxx.com',
'DATABASE': 'EDWxx',
'PORT': '5460',
'UID': 'anxxx',
'PWD': 'kkkkk;',
}
with open('db_connect.ini', 'w') as configfile:
config.write(configfile)
在主 Python 脚本中添加 ini 文件以加载 netezza 日志记录凭据。
import configparser
print('\nEstablishing DB Connection..........')
config = configparser.ConfigParser()
config.read('db_connect.ini')
constr = 'DRIVER={{{drv}}};SERVER={srv};DATABASE=
{db};PORT={prt},UID={uid},PWD={pwd};'\
.format(drv=config['NETEZZA'['DRIVER'],
srv=config['NETEZZA']['SERVER'],
db=config['NETEZZA']['DATABASE'],
prt=config['NETEZZA']['PORT'],
uid=config['NETEZZA']['UID'],
pwd=config['NETEZZA']['PWD'])
conn = pyodbc.connect(constr)
请帮助我解决此错误或指出我犯了什么错误。
最佳答案
您可能想尝试 configparser 的内置 get(section, option) 函数,因为我不确定您实现它的方式是否有效。
因此,不要使用 config['NETEZZA'['DRIVER']
而是 config.get('NETEZZA','DRIVER')
另外,我不知道你是否意识到这一点,但你在这里缺少一个“]”drv=config['NETEZZA'
关于python - ConfigParser pyodc 生成错误'无效 - 用户名 (12) (SQLDriverConnect),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55167984/
抱歉,我是 Python 新手,正在尝试使用 ConfigParser 模块。我正在尝试通过配置文件将 netezza 连接到 python。我收到错误 invalid user ,这是不正确的,因为
我是一名优秀的程序员,十分优秀!