Python如何连接有密码的Access数据库并且查询数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python如何连接有密码的Access数据库并且查询数据相关的知识,希望对你有一定的参考价值。
给个示例,我用Pyodbc老报错
参考技术A import pyodbcdbfile="db2.mdb"
try:
conn=pyodbc.connect('DRIVER=Microsoft Access Driver (*.mdb);PWD=thepwd;DBQ='+dbfile)
cur=conn.cursor()
cur.execute("select * from standard")
print cur.fetchone()
print dir(cur)
except pyodbc.Error,e:
print e[1]
except pyodbc.ProgrammingError,e:
print e[1]
如何判断ACCESS数据库有无密码
因为没有密码的数据库即使加上密码选项连接也不报错,所以如果通过连接来判读就无法识别无密码的数据库。
通过设置密码可以来测试数据库是否有密码,这是由于修改数据库密码的前提是数据库必须先有密码才行,如果数据库原先没有密码则会报错。
public static bool HasPassword(string dbPathName,string currentpassword) { if (string.IsNullOrEmpty(currentpassword)) { return false; } int rc = -1; try { string conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Jet OLEDB:Database Password={1};Mode=Share Exclusive"; conn = string.Format(conn, dbPathName, currentpassword); string sql = "ALTER DATABASE PASSWORD {0} {1}"; sql = string.Format(sql, AccessHelper.currentpassword, currentpassword); using (OleDbConnection connection = new OleDbConnection(conn)) { connection.Open(); using (OleDbCommand command = new OleDbCommand(sql, connection)) { rc = command.ExecuteNonQuery(); } connection.Close(); return true; } } catch (Exception ex) { return false; } }
以上是关于Python如何连接有密码的Access数据库并且查询数据的主要内容,如果未能解决你的问题,请参考以下文章