sql >> Database >  >> RDS >> Mysql

Laad CSV-gegevens in MySQL in Python

Ik denk dat je mydb.commit() . moet doen alle invoegen in.

Zoiets

import csv
import MySQLdb

mydb = MySQLdb.connect(host='localhost',
    user='root',
    passwd='',
    db='mydb')
cursor = mydb.cursor()

csv_data = csv.reader(file('students.csv'))
for row in csv_data:

    cursor.execute('INSERT INTO testcsv(names, \
          classes, mark )' \
          'VALUES("%s", "%s", "%s")', 
          row)
#close the connection to the database.
mydb.commit()
cursor.close()
print "Done"


  1. JSON_VALUE() Functie in Oracle

  2. Kolom splitsen in meerdere rijen in Postgres

  3. Stap voor stap R12.2.6 EBS-installatie op Virtual Box

  4. Een back-up maken van uw Chamilo LMS MySQL-database