Yii v2 snippet guide III

Comparing #109 with #110

Revision #110 was created by rackycz rackycz on Jul 17, 2023, 11:37:41 AM.

Migration CSV

Content

[...]
You can use Linux images under Windows, but I think there is no way how to access the ODBC drivers from virtual Linux. You would have to try it, I haven't tested it yet.

**Migration batch insert csv**
---

If you want to import CSV into your DB in Y
Iii2 migrations, you can create this "migration base class" and use it as a parent of your actuall migration. Then you can use method batchInsertCsv().

```php
<?php

namespace app\components;
[...]