解决方法
不幸的是,答案是否定的,任何这样做的尝试都会产生:
DOM7005: Indexed DB is only available on websites with http or https URL schemes.
本主题类似于:Can local files in IE10 use IndexedDB?
但是,当您使用HTA时,您可以访问其他数据库COM ActiveX对象,例如ADODB.Connection.为了帮助您入门,这里有一个简短的代码片段,可以创建一个sqlCE 3.5数据库并打开它.
<html> <head> <script type="text/javascript"> try { var adox = new ActiveXObject("ADOX.Catalog"); adox.Create("Provider=Microsoft.sqlSERVER.CE.OLEDB.3.5;Data Source=sample.sdf"); var db = new ActiveXObject("ADODB.Connection"); db.Open("Provider=Microsoft.sqlSERVER.CE.OLEDB.3.5;Data Source=sample.sdf"); db.Close(); } catch (e) { alert("Exception: " + e.message); } </script> </head> <body> </body> </html>