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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| -- phpMyAdmin SQL Dump
-- version 2.11.2.1
-- <a href="http://www.phpmyadmin.net" target="_blank">http://www.phpmyadmin.net</a>
--
-- Serveur: localhost
-- Généré le : Lun 11 Janvier 2010 à 09:20
-- Version du serveur: 5.0.45
-- Version de PHP: 5.2.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Base de données: `base_personne`
--
CREATE DATABASE `base_personne` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `base_personne`;
-- --------------------------------------------------------
--
-- Structure de la table `personne`
--
CREATE TABLE `personne` (
`matricule` int(4) NOT NULL,
`nom` varchar(30) NOT NULL,
`prenom` varchar(30) NOT NULL,
`age` int(4) NOT NULL,
`datenais` date NOT NULL,
PRIMARY KEY (`matricule`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Contenu de la table `personne`
--
INSERT INTO `personne` (`matricule`, `nom`, `prenom`, `age`, `datenais`) VALUES
(1, 'jarry', 'jr', 25, '0000-00-00');
<!-- PMA-SQL-ERROR -->
<div class="error"><h1>Erreur</h1>
<p><strong>requête SQL:</strong>
</p>
<p>
<span class="syntax"><span class="syntax_alpha syntax_alpha_reservedWord">SHOW</span> <span class="syntax_alpha syntax_alpha_reservedWord">CREATE</span> <span class="syntax_alpha syntax_alpha_reservedWord">TABLE</span> <span class="syntax_quote syntax_quote_backtick">`base_personne`</span><span class="syntax_punct syntax_punct_qualifier">.</span><span class="syntax_quote syntax_quote_backtick">`t1`</span> </span>
</p>
<p>
<strong>MySQL a répondu:</strong><a href="http://dev.mysql.com/doc/refman/5.0/fr/error-messages-server.html" target="mysql_doc"><img class="icon" src="./themes/original/img/b_help.png" width="11" height="11" alt="Documentation" title="Documentation" /></a>
</p>
<code>
#1146 - Table 'base_personne.t1' doesn't exist
</code><br />
</div><fieldset class="tblFooters"> </fieldset>
<script type="text/javascript">
//<![CDATA[
// updates current settings
if (window.parent.setAll) {
window.parent.setAll('fr-utf-8', 'utf8_unicode_ci', '1', '', 't1');
}
// set current db, table and sql query in the querywindow
if (window.parent.reload_querywindow) {
window.parent.reload_querywindow(
'',
't1',
'');
}
if (window.parent.frame_content) {
// reset content frame name, as querywindow needs to set a unique name
// before submitting form data, and navigation frame needs the original name
if (typeof(window.parent.frame_content.name) != 'undefined'
&& window.parent.frame_content.name != 'frame_content') {
window.parent.frame_content.name = 'frame_content';
}
if (typeof(window.parent.frame_content.id) != 'undefined'
&& window.parent.frame_content.id != 'frame_content') {
window.parent.frame_content.id = 'frame_content';
}
//window.parent.frame_content.setAttribute('name', 'frame_content');
//window.parent.frame_content.setAttribute('id', 'frame_content');
}
//]]>
</script>
</body>
</html> |
Partager