Revision #110 has been created by rackycz on Jul 17, 2023, 11:37:41 AM with the memo:
Migration CSV
« previous (#109)
Changes
Title
unchanged
Yii v2 snippet guide III
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,yii2,beginer
Content
changed
[...]
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 YIii2 migrations, you can create this "migration base class" and use it as a parent of your actual
l migration.
Then you can use method batchInsertCsv().
```php
<?php
namespace app\components;[...]