sql >> データベース >  >> RDS >> Mysql

MySQLコネクタ/Python-Python変数をMySQLテーブルに挿入します

    mysql.connectorを使用していると仮定します (私はあなたがそうだと思います)、あなた自身のコンバータークラスを定義してください:

    class NumpyMySQLConverter(mysql.connector.conversion.MySQLConverter):
        """ A mysql.connector Converter that handles Numpy types """
    
        def _float32_to_mysql(self, value):
            return float(value)
    
        def _float64_to_mysql(self, value):
            return float(value)
    
        def _int32_to_mysql(self, value):
            return int(value)
    
        def _int64_to_mysql(self, value):
            return int(value)
    
    config = {
        'user'    : 'user',
        'host'    : 'localhost',
        'password': 'xxx',
        'database': 'db1'
    }
    
    conn = mysql.connector.connect(**config)
    conn.set_converter_class(NumpyMySQLConverter)
    


    1. PHPに改行を読み取らせて として返す方法

    2. ジャンプしてテスト駆動データベース開発(TDDD)を開始

    3. Joomla! 3データベーステーブルの作成時にインストールがフリーズする

    4. MariaDBのWEEKDAY()とDAYOFWEEK():違いは何ですか?