OwlCyberSecurity - MANAGER
Edit File: cursors.cpython-312.pyc
� ɓ�g�? � �^ � d Z ddlZddlmZ ej dj g d�� ej ej z � Z G d� d� Z G d � d � Z G d� d� Z G d � d� Z G d� d� Z G d� de ee � Z G d� de e e � Z G d� deee � Z G d� dee e � Zy)zyMySQLdb Cursors This module implements Cursors of various types for MySQLdb. By default, MySQLdb uses the Cursor class. � N� )�ProgrammingError� )z'\s*((?:INSERT|REPLACE)\b.+\bVALUES?\s*)z6(\(\s*(?:%s|%\(.+\)s)\s*(?:,\s*(?:%s|%\(.+\)s)\s*)*\))z(\s*(?:ON DUPLICATE.*)?);?\s*\Zc � � e Zd ZdZdZddlmZmZmZm Z m Z mZmZm Z mZmZmZ dZd� Zd� Zd� Zd � Zd � Zd� Zd� Zd � Zd� Zd� Zd� Zd� Zdd�Zdd�Zdd�Z d� Z!d� Z"dd�Z#d� Z$dd�Z%d� Z&eZeZe Z e Z eZeZe Z eZeZeZy)� BaseCursora A base for Cursor classes. Useful attributes: description A tuple of DB API 7-tuples describing the columns in the last executed query; see PEP-249 for details. description_flags Tuple of column flags for last query, one entry per column in the result set. Values correspond to those in MySQLdb.constants.FLAG. See MySQL documentation (C API) for more information. Non-standard extension. arraysize default number of rows fetchmany() will fetch i r )� MySQLError�Warning�Error�InterfaceError� DatabaseError� DataError�OperationalError�IntegrityError� InternalErrorr �NotSupportedErrorNc � � || _ d | _ d | _ d| _ d| _ d | _ d | _ d | _ d | _ d | _ y )Nr r ) � connection�description�description_flags�rowcount� arraysize� _executed� lastrowid�_result� rownumber�_rows)�selfr s �@/opt/hc_python/lib64/python3.12/site-packages/MySQLdb/cursors.py�__init__zBaseCursor.__init__A sJ � �$������!%����� ������������������ � c �$ � d | _ d | _ d | _ d | _ | j r!| j j � d | _ | j }|�y |j � dk( r%|j � |j � dk( r�$y y �Nr ) r r r r r �discardr �next_result�discard_result�r �cons r �_discardzBaseCursor._discardN s} � ����!%��� �� �����<�<��L�L� � �"��D�L��o�o���;���o�o��1�$���� � �o�o��1�$r c � � | j � d| _ d| _ y| j � d| _ d| _ y# d| _ d| _ w xY w)z6Close the cursor. No further queries will be possible.N)r r r( �r s r �closezBaseCursor.closeb sO � � ����&�� #�D�O��D�L� �M�M�O�"�D�O��D�L�� #�D�O��D�L�s �= �= �A c � � | S �N� r* s r � __enter__zBaseCursor.__enter__l � � ��r c �&