Python Mysql数据库操作 Perl操作Mysql数据库

时间:2024-01-20 11:07:43 

首先下载 MySQLdb
#encoding=GBK
import MySQLdb
#import sys
#
#reload(sys)
#sys.setdefaultencoding('utf-8')
print 'Connection ...'
host='192.168.1.77'
user='root'
passwd='123456'
db='test'
conn = MySQLdb.connect(host,user,passwd,db,charset='gbk')
print 'Connection success'
cursor = conn.cursor()
#query = "insert into test(id,name) values(%s , %s)"
#param = ("1","汉字")
#cursor.execute(query,param)
#
#conn.commit()
cursor.execute('select * from test')
rows = cursor.fetchall()
for row in rows:
print row[1]
cursor.close()
conn.close()
Perl操作Mysql数据库 网上的比较详细的方法
一. 安装DBI模块
步骤1:
从TOOLS栏目中下载DBI.zip,下载完后用winzip解开到一个temp目录,共有三个文件:
Readme
DBI.ppd
DBI.tar.gz
步骤2:
在DOS窗口下,temp目录中运行下面的DOS命令:
ppm install DBI.ppd
如果提示无效命令,可在perl/bin目录下运行
二. 安装DBD-Mysql模块
从软件下载中下载DBD-Mysql.zip,安装方法同一.
三. 准备数据库
启动mysql,首先创建一个数据库mydata,然后创建一个表address
mysql> create database mydata;
Query OK, 1 row affected (0.00 sec)
mysql> use mydata;
Database changed
mysql> create table address (
-> id int(5) not null,
-> name varchar(40) not null,
-> email varchar(50) not null,
-> telephone int(12) null);
Query OK, 0 rows affected (0.05 sec)
输入些数据:
mysql> insert into address values (
-> 1,'Nighthawk','nighthawk@163.net',92384092);
Query OK, 1 row affected (0.00 sec)
四. 下面用perl程序来插入若干记录并做查询.
use DBI;
#连接数据库mydata
my $dbh = DBI->connect('DBI:mysql:mydata') or die "无法连接数据库: " . DBI->errstr;
print "插入若干记录\n";
my $sth = $dbh->prepare(q{
INSERT INTO address (id, name,email,telephone) VALUES (?, ?, ?, ?)
}) });
print "输入记录,回车结束:";
while ($inputdata =<>) {
chop $inputdata;
last unless($inputdata);
my ($id, $name,$email, $tel) = split( /,/, $inputdata);
$sth->execute($id, $name, $email,$tel)
}
# $dbh->commit;
print "下面根据输入的名字打印出EMAIL地址和电话\n";
my $sth = $dbh->prepare('SELECT * FROM address WHERE name=?')
or die $dbh->errstr;
print "请输入姓名,回车结束:";
while ($inputname =<>) {
my @data;
chomp $inputname;
last unless($inputname);
$sth->execute($inputname) or die "错误: " . $sth->errstr;
while (@data = $sth->fetchrow_array()) {
print "Email:$data[2]\t Telephone:$data[3]\n";
}
}
#断开连接
$dbh->disconnect;
Nighthawk

标签:Python,Mysql
0
投稿

猜你喜欢

  • MySQL8 批量修改字符集脚本

    2024-01-16 12:50:34
  • python thrift 实现 单端口多服务的过程

    2022-04-28 21:46:00
  • js高亮关键词系列方法

    2008-01-22 11:11:00
  • JS应用正则表达式转换大小写示例

    2024-04-26 17:11:14
  • python和C++共享内存传输图像的示例

    2021-03-28 01:27:57
  • 10分钟学会使用python实现人脸识别(附源码)

    2021-02-03 17:40:57
  • Go 语言结构体链表的基本操作

    2024-02-07 18:51:11
  • 记一次因线上mysql优化器误判引起慢查询事件

    2024-01-26 18:14:41
  • Go 语言中 20 个占位符的整理

    2024-04-23 09:45:21
  • Python基于TensorFlow接口实现深度学习神经网络回归

    2022-07-17 22:38:28
  • Python中获取对象信息的方法

    2021-04-04 09:08:22
  • python opencv之SIFT算法示例

    2023-12-27 21:42:33
  • python排序算法之归并排序

    2021-03-24 06:05:39
  • 删除mysql数据表如何操作

    2024-01-26 01:22:20
  • python生成ppt的方法

    2021-11-08 11:50:48
  • IDEA最新激活码永久激活教程附激活失败原因汇总

    2023-12-13 11:57:29
  • vue 请求后台数据的实例代码

    2024-05-05 09:23:47
  • win10下python3.5.2和tensorflow安装环境搭建教程

    2022-11-05 15:56:21
  • 基于鼠标点击跟踪的用户点击行为分析

    2008-04-24 19:22:00
  • Python爬虫获取基金基本信息

    2022-01-06 02:22:12
  • asp之家 网络编程 m.aspxhome.com