如何将excel文件行插入sqlite数据库

如何将excel文件行插入sqlite数据库

本文介绍了如何将excel文件行插入sqlite数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个名为db的sqlite数据库,其中包含名为student的表,列:名称和电子邮件。类似地,我有excel文件studentdb.xlsx具有类似的列名称和数千行。我想读取excel文件并通过php脚本将数据导入sqlite数据库。怎么做?



我尝试了什么:



我经历了PHPExcel库,但那是用于PHP的,使用mysql

I have a sqlite database named: db with table named student, columns: name and email. Similarly I have excel file studentdb.xlsx having the similar column name with thousand of rows. I want to read the excel file and import the data into sqlite database through a php script. How to do that?

What I have tried:

I went through PHPExcel library but that was for PHP using mysql

推荐答案



这篇关于如何将excel文件行插入sqlite数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 06:42