前提・実現したいこと
使っているパソコンはwindows。MAMPを使っています。
PHP(Laravel) コマンドプロンプトでphp artisan migrateと打ってテーブルを作りたいです。
php artisan migrateと入力して以下のエラーが出ました。
発生している問題・エラーメッセージ
Illuminate\Database\QueryException could not find driver (SQL: select * from information_schema.tables where table_schema = blog and table_name = migrations and table_type = 'BASE TABLE') at C:\MAMP\htdocs\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:671 667| // If an exception occurs when attempting to run a query, we'll format the error 668| // message to include the bindings with SQL, which will make this exception a 669| // lot more helpful to the developer instead of just the database's errors. 670| catch (Exception $e) { > 671| throw new QueryException( 672| $query, $this->prepareBindings($bindings), $e 673| ); 674| } 675| 1 C:\MAMP\htdocs\blog\vendor\laravel\framework\src\Illuminate\Database\Connectors\Connector.php:70 PDOException::("could not find driver") 2 C:\MAMP\htdocs\blog\vendor\laravel\framework\src\Illuminate\Database\Connectors\Connector.php:70 PDO::__construct("mysql:unix_socket=C:\MAMP\tmp\mysql\mysql.sock;dbname=blog", "root", "root", [])
該当のソースコード
cd C:/MAMP/htdocs/blog dir php artisan migrate
試したこと
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/24 23:40
2020/08/25 01:23
2020/08/25 04:59
2020/08/25 05:37
2020/08/28 07:12
2020/08/28 07:14