在php中使用access数据库
我在 VB.NET 上构建了一个股票管理器,它使用 MS Access 数据库。我还建立了一个网站,在这个网站上我想定期上传更新的MS Access数据库文件到网站上并将其插入到mySql数据库中。现在我的问题是我不知道如何使用 php 访问 MS Access 文件,我确信有一种方法无需购买这些软件,但我找不到它。现在我不受这种情况的限制,如果有人有更好的想法,我会很感激,最重要的是我希望库存管理离线,并且在一天结束时,我希望将其上传到网站。 多谢
I built a stock manager on VB.NET, it uses a MS Access Database. I also built a website, and on this website I want to relularly upload the updated MS Access database file onto the website and insert it into the mySql Database. Now my problem is I dont know how to access the MS Access file using php, im sure theres a way without buying those softwares, but i cant find it. Now I not bound to this scenario, if someone has better ideas i would appreciate it, most importantly I want the stock management to be offline, and at the end of the day, i want it uploaded to the site.
Thanks alot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我过去曾使用 ADODB 和 JET 完成过此操作:
这只是一个小示例。 更多帮助
I have done that in the past using ADODB and JET:
This is just a small sample. More Help
如果您在 PHP 服务器上正确配置了 ODBC 数据源,请查看 php_odbc,它能够与 MS Access 进行通信。
php_odbc
文档位于此处。Look into
php_odbc
which has the ability to communicate with MS Access if you have correctly configured an ODBC data source on the PHP server.php_odbc
documentation here.