Laravel  
laravel
文档
数据库
架构
入门
php技术
    
Laravelphp
laravel / php / java / mysql

简洁的MysqlHelper_MySQL

作者:倾尽尘光暖流年   发布日期:2024-09-09   浏览:350

以下是一个简洁的MySQL帮助类示例:

import mysql.connector

class MySQLHelper:
    def __init__(self, host, username, password, database):
        self.host = host
        self.username = username
        self.password = password
        self.database = database
        self.connection = None
        self.cursor = None

    def connect(self):
        self.connection = mysql.connector.connect(
            host=self.host,
            user=self.username,
            password=self.password,
            database=self.database
        )
        self.cursor = self.connection.cursor()

    def disconnect(self):
        if self.connection.is_connected():
            self.cursor.close()
            self.connection.close()

    def execute_query(self, query):
        self.cursor.execute(query)
        results = self.cursor.fetchall()
        return results

    def execute_update(self, query):
        self.cursor.execute(query)
        self.connection.commit()
        return self.cursor.rowcount

使用示例:

# 创建MySQLHelper实例
helper = MySQLHelper("localhost", "root", "password", "mydatabase")

# 连接到数据库
helper.connect()

# 执行查询
results = helper.execute_query("SELECT * FROM mytable")

# 执行更新
rows_affected = helper.execute_update("UPDATE mytable SET column1='value1' WHERE id=1")

# 断开连接
helper.disconnect()

这个MySQL帮助类提供了连接到MySQL数据库、执行查询和更新操作的功能,可以根据需要进行扩展和修改。

上一篇:MySQL Study之--MySQL 表连接_MySQL

下一篇:MySQL 忘记root密码解决办法_MySQL

大家都在看

php进入mysql(php进入根目录)

php链接不到mysql(php连接mys

php连接小马(php连接mysql代码)

php与ldap怎么连接(php pdo连

php代码后台增删改查(php对mysql

[PHP从小白到大牛]-022 PHP操作

php搭建mysql连接池

PHP MySQL:连接MySQL数据库

PHP访问MySQL查询超时设置

PHP 原生连接 Mysql

Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3

Laravel 中文站