Welcome Guest, Not a member yet? Register   Sign In
MYSQLI_OPT_LOCAL_INFILE
#1

Is there a way to set this parameter directly in the config/database.php settings or should it be done another way?

Thanks
Reply
#2

(This post was last modified: 04-11-2024, 06:16 PM by kenjis.)

No, you cannot set in config/Database.php.
Reply
#3

You can get MySQLi object.

When CI4 MySQLi connection does not yet connect to MySQL server.
$db     = db_connect();
$mysqli = $db->connect();
d($mysqli);      // mysqli object


When CI4 MySQLi connection has already connected to MySQL server.
$db    = db_connect();
dd($db->mysqli); // mysqli object
Reply
#4

(04-11-2024, 06:29 PM)kenjis Wrote: You can get MySQLi object.

When CI4 MySQLi connection does not yet connect to MySQL server.
$db     = db_connect();
$mysqli = $db->connect();
d($mysqli);      // mysqli object


When CI4 MySQLi connection has already connected to MySQL server.
$db    = db_connect();
dd($db->mysqli); // mysqli object


Following this I thought I can set the option like this:


Code:
$db->mysqli->options(MYSQLI_OPT_LOCAL_INFILE, true);
But this still gives me the error "LOAD DATA LOCAL INFILE is forbidden, check related settings like mysqli.allow_local_infile|mysqli.local_infile_directory or PDO::MYSQL_ATTR_LOCAL_INFILE|PDO::MYSQL_ATTR_LOCAL_INFILE_DIRECTORY".


How can I overcome this?
Reply
#5

As the error message says, check related settings like mysqli.allow_local_infile|mysqli.local_infile_directory in your php.ini.
Reply
#6

(This post was last modified: 05-31-2024, 02:20 AM by martin_ci.)

php.ini settings on my localhost are correct (mysql.allow_local_infile=On) but CI somehow establish the connection without that option.

As I wrote I can setup the connection manually (outside CI) with the right PDO attribute so that I can use that sql command but not inside CI.

I wonder where I can set this option in CI. The default array in the config/database.php seems not to be the correct place.
Reply
#7

Ah, we cannot set MYSQLI_OPT_LOCAL_INFILE with CI4 MySQLi driver,
because
Quote:mysqli_options() should be called after mysqli_init() and before mysqli_real_connect().
https://www.php.net/manual/en/mysqli.opt...escription
Reply
#8

(This post was last modified: 05-31-2024, 01:55 PM by kenjis.)

You can:
- create your DB driver. See https://forum.codeigniter.com/thread-782...83813.html
- send a Pull Request to add setting for mysqli options in Config\Database
Reply
#9

(05-31-2024, 01:50 PM)kenjis Wrote: You can:
- create your DB driver. See https://forum.codeigniter.com/thread-782...83813.html
- send a Pull Request to add setting for mysqli options in Config\Database

Mmh, not sure if I am able/good enough to implement that correctly. But thank you very much for the links!
Reply




Theme © iAndrew 2016 - Forum software by © MyBB