Analysis on the basic operation steps for Python Access Database Operations

Source: Internet
Author: User

The emergence of the Python programming language brings great benefits to developers. We can use this powerful object-oriented open-source language to easily implement many specific functional requirements. For example, Python is used to operate the Access database. Before using Python to operate the Access database, you must first install Python and Python for Windows extensions.

Step 1: Create a database connection

 
 
  1. import win32com.client   
  2. conn = win32com.client.Dispatch(r'ADODB.Connection')   
  3. DSN = 'PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=C:/MyDB.mdb;'   
  4. conn.Open(DSN) 

Step 2: open a record set

 
 
  1. Rs = win32com. client. Dispatch (r 'ADODB. recordset ')
  2. Rs_name = 'myrecordset' # Table Name
  3. Rs. Open ('[' + rs_name + ']', conn, 1, 3)

Step 3 of Python's Access Database Operations

 
 
  1. rs.AddNew()   
  2. rs.Fields.Item(1).Value = 'data'   
  3. rs.Update() 

Step 4: use SQL to insert or update data

 
 
  1. conn = win32com.client.Dispatch(r'ADODB.Connection')   
  2. DSN = 'PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=C:/MyDB.mdb;'   
  3. sql_statement = "Insert INTO [Table_Name] ([Field_1], 
    [Field_2]) VALUES ('data1', 'data2')"   
  4. conn.Open(DSN)   
  5. conn.Execute(sql_statement)   
  6. conn.Close() 

Step 5 of Python Access Database Operations

 
 
  1. rs.MoveFirst()   
  2. count = 0   
  3. while 1:   
  4. if rs.EOF:   
  5. break   
  6. else:   
  7. countcount = count + 1   
  8. rs.MoveNext() 

Note: If a record is empty, moving the pointer to the first record will result in an error because recordcount is invalid at this time. Solution: Set Cursorlocation to 3 before opening a record set. In this case, recordcount is valid. For example:

 
 
  1. rs.Cursorlocation = 3 # don't use parenthesis here   
  2. rs.Open('Select * FROM [Table_Name]', conn) # be sure conn is open   
  3. rs.RecordCount # no parenthesis here either 

The above section describes how to operate an Access database using Python.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.