SQLite는 매우 가볍기 때문에 많은 응용 프로그램에서 널리 사용되는 매우 인기 있는 관계형 데이터베이스입니다. sqlite3은 Python 표준 배포판과 함께 제공되는 모듈이며 sqlite 데이터베이스를 처리하는 데 사용할 수 있습니다. 데이터베이스는 파일이나 메모리에 저장할 수 있으며 여기서는 메모리에 저장됩니다.
코드: (권장 학습: Python 비디오 튜토리얼)
import sqlite3 with sqlite3.connect(":memory:") as con: c=con.cursor() #创建游标 c.execute('''CREATE TABLE sensors(data text,city text,code text,sensor_id real,temperature real)''') #新建表,text和real分别表示字符串和数值的类型 for table in c.execute("SELECT name FROM sqlite_master WHERE type='table'"): print "Table",table[0] c.execute("INSERT INTO sensors VALUES ('2016-11-05','Utrecht','Red',42,15.14)") c.execute("SELECT * FROM sensors") print c.fetchone() #输出插入记录 con.execute("DROP TABLE sensors") #删除表 print "# of tables",c.execute("SELECT COUNT(*) FROM sqlite_master WHERE type='table'").fetchone()[0] c.close()
실행 결과:
Table sensors (u'2016-11-05', u'Utrecht', u'Red', 42.0, 15.14) # of tables 0
관계형 데이터베이스 관리 시스템
임베디드 데이터베이스, 적합 임베디드 장치용
SQLite는 C/S 데이터베이스 엔진이 아닙니다
사용자 프로그램에 통합
대부분의 SQL 표준을 구현합니다
더 많은 Python 관련 기술 기사를 보려면 Python Tutorial 칼럼을 방문하여 알아보세요!
위 내용은 Python 데이터 분석에 사용할 데이터베이스는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!