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

テキストファイルの構造(テーブル)

    CSVは、 fputcsvでは簡単です。

    $fh = fopen('output.csv', 'w') or die("can't open file");
    
    // output header and first row
    $row = mysql_fetch_assoc($result)
    fputcsv($fh, array_keys($row));
    fputcsv($fh, $row);
    
    // output the remaining rows
    while ($row = mysql_fetch_assoc($result)) {
        fputcsv($fh, $row);
    }
    
    fclose($fh);
    


    1. C#MySQL接続プール

    2. どうすれば次のようなことができますか:USE @databaseName

    3. Djangooracledb設定

    4. アプリケーションでのMySQLとMongodbの組み合わせ