php-src/ext/mysqli/tests/connect.inc

24 lines
555 B
PHP
Raw Normal View History

2003-02-13 18:21:37 +00:00
<?php
/* default values are localhost, root and empty password
Change the values if you use another configuration */
$driver = new mysqli_driver;
if (!$driver->embedded) {
$host = "localhost";
$user = "root";
$passwd = "";
} else {
$path = dirname(__FILE__);
$host = $user = $passwd = NULL;
$args = array(
"--datadir=$path",
"--innodb_data_home_dir=$path",
"--innodb_data_file_path=ibdata1:10M:autoextend",
"--log-error=$path/testrun.log"
);
$driver->embedded_server_start(TRUE, $args, NULL);
}
2003-02-13 18:21:37 +00:00
?>