Salutare, am o nelamurire in legatura cu importarea tabelelor in baza de date. Imi da acest warning la unele tabele care le import.
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"# MySQL returned an empty result set (i.e. zero rows).
SET time_zone = "+00:00"# MySQL returned an empty result set (i.e. zero rows).
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */# MySQL returned an empty result set (i.e. zero rows).
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */# MySQL returned an empty result set (i.e. zero rows).
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */# MySQL returned an empty result set (i.e. zero rows).
/*!40101 SET NAMES utf8 */# MySQL returned an empty result set (i.e. zero rows).
CREATE TABLE IF NOT EXISTS `bugs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`text` text NOT NULL,
`playerid` int(11) NOT NULL DEFAULT '0',
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2# MySQL returned an empty result set (i[...]
Nu inteleg ce vrea sa insemne asta, ce nu e bine ....