Skip to content

Latest commit

 

History

History
39 lines (18 loc) · 1.93 KB

Perl MySQL Connect.md

File metadata and controls

39 lines (18 loc) · 1.93 KB

原文地址:https://www.mysqltutorial.org/perl-mysql/

Perl MySQL Tutorial

This Perl MySQL section shows you how to interact with MySQL by using Perl DBI API for connecting to and disconnecting from MySQL databases, creating tables, handling data, and managing transactions.

You should have a fundamental knowledge of Perl programming to start with this Perl MySQL tutorial section. If you want to review your Perl knowledge as a refresher, please check it out Perl tutorial before going forward with this section.

This tutorial shows you how to connect to and disconnect from a MySQL database by using Perl DBI module.

In this tutorial, you will learn how to create new tables in a MySQL database by using Perl DBI API.

In this tutorial, we will show you step by step how to insert data into a table by using Perl DBI.

In this tutorial, you will learn how to handle database transaction using Perl DBI API to ensure the data integrity of the data.

In this tutorial, we will show you various ways to query data from MySQL database tables using Perl DBI.

This tutorial shows you step by step how to update data in MySQL table by using the prepared statement in Perl DBI.

This step-by-step tutorial shows you how to use Perl DBI to delete data in a MySQL database table.