Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any implementation of database by perl [closed]

Is there any perl modules implementing function of database and easy to use. I do not need modules used to connect to some database products. I need simple database writing by perl.

Thanks.

like image 270
user2799433 Avatar asked Nov 24 '19 22:11

user2799433


1 Answers

I would suggest using DBD::SQLite. This is a self-contained database management system with no dependency to external binaries (unlike most others DBI drivers). It has nice options such as creating in-memory databases.

SQLite is an open-source RDBMS that implements a significant subset of the SQL ANSI Standard.

DBD::SQLite is a legitimate DBI driver, so it conforms to the API of the great DBI module, which is the de-facto Perl standard interface for databases.

From the documentation:

DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else.

like image 122
GMB Avatar answered Dec 29 '22 16:12

GMB