Hi
Here is the traceback -
Traceback (most recent call last):
File "read2_csv.py", line 11, in <module>
conn = db2.connect(database,user,password)
File "/QOpenSys/pkgs/lib/python3.6/site-packages/ibm_db_dbi.py", line 667, in connect
return _connect_helper(ibm_db.connect, dsn, user, password, host, database, conn_options)
File "/QOpenSys/pkgs/lib/python3.6/site-packages/ibm_db_dbi.py", line 578, in _connect_helper
options = dict( (k.strip().upper(), v.strip()) for k, v in tokens )
File "/QOpenSys/pkgs/lib/python3.6/site-packages/ibm_db_dbi.py", line 578, in <genexpr>
options = dict( (k.strip().upper(), v.strip()) for k, v in tokens )
ValueError: not enough values to unpack (expected 2, got 1)
Line 11 is conn = db2.connect(database,user,password)
In my other script I connect using the default, conn = db2.connect()
I need to use the user and password parms to connect when the script is used in production.
-----Original Message-----
From: OpenSource [mailto:opensource-bounces@xxxxxxxxxxxxxxxxxx] On Behalf Of John Yeung
Sent: Thursday, June 27, 2019 10:01 AM
To: IBMi Open Source Roundtable <opensource@xxxxxxxxxxxxxxxxxx>
Subject: Re: [IBMiOSS] CSV file in the IFS, writing it to a DB2 file using Python
On Thu, Jun 27, 2019 at 12:45 PM Mike Loyd <mloyd@xxxxxxx> wrote:
Hi there
I am trying to connect to DB2 in python using the following -
import ibm_db_dbi as db2
sys_nam = "*LOCAL"
user = "USER"
password = "PASSWORD"
conn = db2.connect(sys_nam,user,password)
I am receiving this error when running the script -
ValueError: not enough values to unpack (expected 2, got 1)
It's helpful if you give more information than that. Ideally, you should provide the entire traceback, but if that's really long, you should at least give the last few lines. Crucially, they will reveal which exact line of code triggered the error.
As it stands, I don't see any code that could have produced the error that you're reporting.
Also, earlier you said you already have a script which gets data from an Excel workbook into the database. How is *that* script connecting to the database?
John Y.
--
This is the IBMi Open Source Roundtable (OpenSource) mailing list To post a message email: OpenSource@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.midrange.com_mailman_listinfo_opensource&d=DwICAg&c=CqkB-gCiM4xW6iOknju0uA&r=l8_Kw5BfK6Ei8qLuvBDSAA&m=RZjFdlqny7-LmcHVcAeZSJiRQJniPhd643Ki1V0Khj8&s=1vHz75EdwPcdpmqWfhkq-g5GeEEEqiks25W7Ock-V6g&e=
or email: OpenSource-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://urldefense.proofpoint.com/v2/url?u=https-3A__archive.midrange.com_opensource&d=DwICAg&c=CqkB-gCiM4xW6iOknju0uA&r=l8_Kw5BfK6Ei8qLuvBDSAA&m=RZjFdlqny7-LmcHVcAeZSJiRQJniPhd643Ki1V0Khj8&s=2Fn5mSVwhJT6Hm5YOhaLcrbC9apCBkysYkwe4NLy8Jc&e= .
Help support midrange.com by shopping at amazon.com with our affiliate
link:
https://urldefense.proofpoint.com/v2/url?u=https-3A__amazon.midrange.com&d=DwICAg&c=CqkB-gCiM4xW6iOknju0uA&r=l8_Kw5BfK6Ei8qLuvBDSAA&m=RZjFdlqny7-LmcHVcAeZSJiRQJniPhd643Ki1V0Khj8&s=E2nGu0FNIc7aStRm41gjDoHPsIAgzuqrS3ycohiQZGA&e=
As an Amazon Associate we earn from qualifying purchases.