/usr/lib/pike8.0/modules/Sql.pmod/mysqls.pike is in pike8.0-mysql 8.0.164-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
* Glue for the Mysql-module using SSL
*/
//! Implements SQL-urls for
//! @tt{mysqls://[user[:password]@@][hostname][:port][/database]@}
//!
//! Sets the connection to SSL-mode, and sets the default configuration
//! file to @expr{"/etc/my.cnf"@}.
//!
//! @fixme
//! Ought to load a suitable default configuration file for Win32 too.
//!
//! @note
//! This connection method only exists if the Mysql-module has been
//! compiled with SSL-support.
#pike __REAL_VERSION__
#require constant(Mysql.mysql.CLIENT_SSL)
// Cannot dump this since the #require check may depend on the
// presence of system libs at runtime.
constant dont_dump_program = 1;
inherit Sql.mysql;
void create(string host,
string db,
string user,
string password,
mapping(string:mixed)|void options)
{
if (!mappingp(options))
options = ([ ]);
options->connect_options |= CLIENT_SSL;
if (!options->mysql_config_file)
options->mysql_config_file = "/etc/my.cnf";
::create(host||"", db||"", user||"", password||"", options);
}
|