Python Forum
from .txt to database - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: from .txt to database (/thread-17105.html)



from .txt to database - myp1lteandroid - Mar-28-2019

I have a .txt file (the content are from one data type say it is numerical) and I want to open this file using Python then read its content and then put its content in MySQL database is this possible and how?


RE: from .txt to database - Yoriz - Mar-28-2019

Reading and writting files
https://dev.mysql.com/doc/connector-python/en/


RE: from .txt to database - Defonds - Apr-09-2019

I think you can read the .txt file first, parse all content to data in memory, and finally write it to MySQL database.