Jump to content
  • 0

запрос в базу mysqli::query(): Couldn't fetch mysqli


DimmoS
 Share

Question

Собственно ошибка в шапке, выскакивает при запросе в бд

Вот код:

function db(){	static $db = null;	if(!$db){		if(!$db = new mysqli(DIM_DB_HOST,DIM_DB_USER,DIM_DB_PASSW,DIM_DB_NAME)) die('Ошибка подключения БД.<br><br>');		if(!$db->set_charset('utf8')) die('Кодировка библиотеки не установлена');    }    return $db;}function prepare($query){	++$_SESSION['db_count'];	if(!$sql = db()->prepare($query)) die(db()->error);	return $sql;}function query($query){	++$_SESSION['db_count'];	if(!$sql = db()->query($query)) die(db()->error);//ошибка здесь	return $sql;}

Когда пользовался $db->query, было всё ок, переписал в функцию 'и стало так'

Php - 45кб 0.003 сек | Db - 9 запросов | Html - 12.9кб 0.001 сек

Запросы норм проходят, инфа достается /заливается /обновляется /удаляется, но! Смущает чет ошибка

Забыл добавить: когда был php 5.6 было всё гуд, апнул до 7.0.2 и понеслось

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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