Insert first 3 elements of 2D array into MySql Database
I have a list with data such as
infoarray[['1.', 'Name1', 'details1, '...', '...', '....'], ['2.', 'Name2, 'details2', '...', '...', '...'], ['3.', 'Name3', 'details3', '...', '...', '...']...]
I simply want to add the first 3 entries into a database table with the format
[PLACE],[NAME],[DETAILS]
Should be relatively simple. The data is already sorted, I would just simply have to append the first 3 elements of each inner array into my database. I tried the following code but I am getting an error.
//using pymysql
cur = conn.cursor()
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", infoarray)
db.commit()
cur.close()
conn.close()
The error is "TypeError: not all arguments converted during string formatting"
which is assume means that my formatting is wrong. I am relatively new to python, so I am very familiar with the nuances of using pymysql.
python mysql append pymysql
add a comment |
I have a list with data such as
infoarray[['1.', 'Name1', 'details1, '...', '...', '....'], ['2.', 'Name2, 'details2', '...', '...', '...'], ['3.', 'Name3', 'details3', '...', '...', '...']...]
I simply want to add the first 3 entries into a database table with the format
[PLACE],[NAME],[DETAILS]
Should be relatively simple. The data is already sorted, I would just simply have to append the first 3 elements of each inner array into my database. I tried the following code but I am getting an error.
//using pymysql
cur = conn.cursor()
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", infoarray)
db.commit()
cur.close()
conn.close()
The error is "TypeError: not all arguments converted during string formatting"
which is assume means that my formatting is wrong. I am relatively new to python, so I am very familiar with the nuances of using pymysql.
python mysql append pymysql
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on theinsert
there are only 3
– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04
add a comment |
I have a list with data such as
infoarray[['1.', 'Name1', 'details1, '...', '...', '....'], ['2.', 'Name2, 'details2', '...', '...', '...'], ['3.', 'Name3', 'details3', '...', '...', '...']...]
I simply want to add the first 3 entries into a database table with the format
[PLACE],[NAME],[DETAILS]
Should be relatively simple. The data is already sorted, I would just simply have to append the first 3 elements of each inner array into my database. I tried the following code but I am getting an error.
//using pymysql
cur = conn.cursor()
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", infoarray)
db.commit()
cur.close()
conn.close()
The error is "TypeError: not all arguments converted during string formatting"
which is assume means that my formatting is wrong. I am relatively new to python, so I am very familiar with the nuances of using pymysql.
python mysql append pymysql
I have a list with data such as
infoarray[['1.', 'Name1', 'details1, '...', '...', '....'], ['2.', 'Name2, 'details2', '...', '...', '...'], ['3.', 'Name3', 'details3', '...', '...', '...']...]
I simply want to add the first 3 entries into a database table with the format
[PLACE],[NAME],[DETAILS]
Should be relatively simple. The data is already sorted, I would just simply have to append the first 3 elements of each inner array into my database. I tried the following code but I am getting an error.
//using pymysql
cur = conn.cursor()
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", infoarray)
db.commit()
cur.close()
conn.close()
The error is "TypeError: not all arguments converted during string formatting"
which is assume means that my formatting is wrong. I am relatively new to python, so I am very familiar with the nuances of using pymysql.
python mysql append pymysql
python mysql append pymysql
asked Nov 12 '18 at 18:49
memphismemphis
102
102
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on theinsert
there are only 3
– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04
add a comment |
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on theinsert
there are only 3
– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on the
insert
there are only 3– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on the
insert
there are only 3– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04
add a comment |
1 Answer
1
active
oldest
votes
This happens because you are formatting 3 values in your query, but passing more than 3 elements per arra yitem.
Try changing your executemany
call to:
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", [a[:3] for a in infoarray])
This way you will get only the first 3 elements in each array item and pass it to executemany
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268332%2finsert-first-3-elements-of-2d-array-into-mysql-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This happens because you are formatting 3 values in your query, but passing more than 3 elements per arra yitem.
Try changing your executemany
call to:
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", [a[:3] for a in infoarray])
This way you will get only the first 3 elements in each array item and pass it to executemany
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
add a comment |
This happens because you are formatting 3 values in your query, but passing more than 3 elements per arra yitem.
Try changing your executemany
call to:
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", [a[:3] for a in infoarray])
This way you will get only the first 3 elements in each array item and pass it to executemany
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
add a comment |
This happens because you are formatting 3 values in your query, but passing more than 3 elements per arra yitem.
Try changing your executemany
call to:
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", [a[:3] for a in infoarray])
This way you will get only the first 3 elements in each array item and pass it to executemany
This happens because you are formatting 3 values in your query, but passing more than 3 elements per arra yitem.
Try changing your executemany
call to:
cur.executemany("""
INSERT INTO
myTable
(place, name, details)
VALUES
(%s, %s, %s)
""", [a[:3] for a in infoarray])
This way you will get only the first 3 elements in each array item and pass it to executemany
answered Nov 12 '18 at 19:12
Rodolfo Donã HospRodolfo Donã Hosp
490211
490211
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
add a comment |
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
Issue solved! I assumed Python would automatically cut off the rest of the array since I am only using three elements. That was not the case. As a side note, I had a hard time debugging my execute command because without a proper conn.commit(), the execute statements did not stick to the database.
– memphis
Nov 12 '18 at 19:50
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268332%2finsert-first-3-elements-of-2d-array-into-mysql-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Don't know if your array example is exactly as in your code, but in the example there are 5 elements per item, while on the
insert
there are only 3– Rodolfo Donã Hosp
Nov 12 '18 at 18:56
Oops, wasn't too clear, there is additional data in the array, but I only want to add the first 3 items to my database. Everything else is not needed in the database.
– memphis
Nov 12 '18 at 19:04