MariaDB [(none)]> grant all privileges on sample_db.* to 'sample_user'@'%' with grant option;
Query OK, 0 rows affected (0.002 sec)
</pre>
====設定====
*fuel/app/config/development/db.php
**developmentの部分は環境別
<pre>
return array(
'default' => array(
'connection' => array(
'dsn' => 'mysql:host=localhost;dbname=sample_db',
'username' => 'sample_user',
'password' => 'password',
),
),
);
</pre>