Insert first 3 elements of 2D array into MySql Database












1














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.










share|improve this question






















  • 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 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 at 19:04
















1














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.










share|improve this question






















  • 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 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 at 19:04














1












1








1







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.










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 12 at 18:49









memphis

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 the insert there are only 3
    – Rodolfo Donã Hosp
    Nov 12 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 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 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 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 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 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 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 at 19:04












1 Answer
1






active

oldest

votes


















0














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






share|improve this answer





















  • 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 at 19:50











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
});


}
});














draft saved

draft discarded


















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









0














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






share|improve this answer





















  • 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 at 19:50
















0














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






share|improve this answer





















  • 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 at 19:50














0












0








0






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






share|improve this answer












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







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 12 at 19:12









Rodolfo 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 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 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 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 at 19:50


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python