Jump to content
  • 0

pear


Bolmazov
 Share

Question

10 answers to this question

Recommended Posts

  • 0

Спасибо, уже выкрутился:

	require_once 'pear/DB.php';

$dsn = array(
'phptype' => 'mysql',
'username' => 'root',
'password' => '',
'hostspec' => 'localhost',
'database' => 'test',
);

$db =& DB::Connect($dsn);
if (PEAR::isError($db)) {die($db->getMessage());}

Почему умные ответы на собственный вопрос приходят после того как задашь этот вопрос другим...

Link to comment
Share on other sites

  • 0

В чем проблема?

	require_once 'pear/MDB2.php';

$dsn = array(
'phptype' => 'mysql',
'username' => 'root',
'hostspec' => 'localhost',
'password' => '',
'database' => 'domgimnaziya5',
);

$options = array(
'debug' => 2,
'portability' => MDB2_PORTABILITY_NONE,
);


$mdb2 =& MDB2::connect($dsn, $options);
if (PEAR::isError($mdb2)) {
die($mdb2->getMessage());
}

Браузер пишет:

"Warning: MDB2::include_once(MDB2\Driver\mysql.php) [function.MDB2-include-once]: failed to open stream: No such file or directory in W:\home\domgimnaziya5.ru\www\pear\MDB2.php on line 333

Warning: MDB2::include_once() [function.include]: Failed opening 'MDB2\Driver\mysql.php' for inclusion (include_path='.;/usr/local/php5/PEAR') in W:\home\domgimnaziya5.ru\www\pear\MDB2.php on line 333

MDB2 Error: not found"

PEAR лежит относительно корня в папке "pear".

Содержимое папки "pear":

--Папка "MDB2"

--MDB2.php

--pear.php

Посмотрел, сюда: "MDB2\Driver" - файла "mysql.php" там нет! Что за хрень с этим PEAR?!

Edited by Bolmazov
Link to comment
Share on other sites

  • 0

Ещё вопрос по PEAR:

Как правильно выполнять запросы типа: "SELECT * FROM comments ORDER BY `date` DESC" (я имею в ввиду ,что прикол Rear в том, что он позволяет писать запросы абстрактной, а не конкретной БД. В данном случае я просто написал запрос в стиле mysql, что не верно с этой точки зрения)

Edited by Bolmazov
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy