Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Jak obsługiwać połączenia MySQL za pomocą wielowątkowości w Pythonie?

Oto przykład użycia wielowątkowości mysql w Pythonie, nie znam Twojej tabeli i danych, więc po prostu zmień kod może pomóc:

import threading
import time
import MySQLdb

Num_Of_threads = 5

class myThread(threading.Thread):

    def __init__(self, conn, cur, data_to_deal):
        threading.Thread.__init__(self)
        self.threadID = threadID
        self.conn = conn
        self.cur = cur
        self.data_to_deal

    def run(self):

        # add your sql 
        sql = 'insert into table id values ({0});'
        for i in self.data_to_deal:
            self.cur.execute(sql.format(i))
            self.conn.commit()

threads = []
data_list = [1,2,3,4,5]

for i in range(Num_Of_threads):
    conn = MySQLdb.connect(host='localhost',user='root',passwd='',db='')
    cur = conn.cursor()
    new_thread = myThread(conn, cur, data_list[i])

for th in threads:
    th.start()

for t in threads:
    t.join()


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Dlaczego nie połączyć Androida bezpośrednio z bazą danych?

  2. Jaka jest różnica między utf8_unicode_ci a utf8_unicode_520_ci?

  3. SQL Wybierz, aby wartość pojawiła się tylko raz

  4. Jak wykluczyć weekendy z date_sub?

  5. Jak zmienić strefę czasową serwera MySQL