Skip to content

Commit 13ef35d

Browse files
Perl MySQL Connect.md
1 parent 716328d commit 13ef35d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Perl MySQL Connect.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
原文地址:https://www.mysqltutorial.org/perl-mysql/
2+
3+
4+
5+
# Perl MySQL Tutorial
6+
7+
8+
9+
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.
10+
11+
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](https://www.perltutorial.org/) before going forward with this section.
12+
13+
### [Perl MySQL Connect](https://www.mysqltutorial.org/perl-mysql/perl-mysql-connect/)
14+
15+
This tutorial shows you how to connect to and disconnect from a MySQL database by using Perl DBI module.
16+
17+
### [Perl MySQL Create Table](https://www.mysqltutorial.org/perl-mysql/perl-mysql-create-table/)
18+
19+
In this tutorial, you will learn how to create new tables in a MySQL database by using Perl DBI API.
20+
21+
### [Perl MySQL Insert Data](https://www.mysqltutorial.org/perl-mysql/perl-mysql-insert/)
22+
23+
In this tutorial, we will show you step by step how to insert data into a table by using Perl DBI.
24+
25+
### [Perl MySQL Transaction](https://www.mysqltutorial.org/perl-mysql/perl-mysql-transaction/)
26+
27+
In this tutorial, you will learn how to handle database transaction using Perl DBI API to ensure the data integrity of the data.
28+
29+
### [Perl MySQL Select Data](https://www.mysqltutorial.org/perl-mysql/perl-mysql-select/)
30+
31+
In this tutorial, we will show you various ways to query data from MySQL database tables using Perl DBI.
32+
33+
### [Perl MySQL Update Data](https://www.mysqltutorial.org/perl-mysql/perl-mysql-update-data/)
34+
35+
This tutorial shows you step by step how to update data in MySQL table by using the prepared statement in Perl DBI.
36+
37+
### [Perl MySQL Delete Data](https://www.mysqltutorial.org/perl-mysql/perl-mysql-delete-data/)
38+
39+
This step-by-step tutorial shows you how to use Perl DBI to delete data in a MySQL database table.

0 commit comments

Comments
 (0)