Jump to content
Fórum Script Brasil
  • 0

Ajuda php


Guilherme Becker

Question

Bom dia, sou novo por aqui. Fiz técnico em informática faz uns 2 anos, agora comecei a trabalhar com php, porem baixei um script de imobiliária e não estou conseguindo fazer funcionar, parece ser um erro de versão do servidor Mysql:

"Unable to create the Property Types table in "imob".

Erro: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 6"

se alguém tiver uma luz ai , eu agradeço ! obrigado! :rolleyes:

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Copei um pedaço do código , se quiser posso te passar os arquivos ...

<?php

require('../includes/config.php');

if (isset($_POST["op"]) && ($_POST["op"]=="LoadDatabase"))

{

mysql_connect($server,$DBusername,$DBpassword) or die('<span class="notice"><strong>Erro:</strong> Não foi possível conectar ao servidor mysql.<br>Verifique o arquivo config.php.</span>');

mysql_select_db("$database") or die("Unable to SELECT \"$database\" database.<br><br>Erro: " . mysql_error());

$query1 ="

CREATE TABLE `$propertytypes_table` (

`id` int(25) NOT NULL auto_increment,

`propertytype` varchar(100) default NULL,

PRIMARY KEY (`id`),

KEY `propertytype` (`propertytype`)

) TYPE=MyISAM";

$query2 ="

CREATE TABLE `$propertylocations_table` (

`id` int(25) NOT NULL auto_increment,

`propertylocation` varchar(100) default NULL,

PRIMARY KEY (`id`),

KEY `propertylocation` (`propertylocation`)

) TYPE=MyISAM";

Link to comment
Share on other sites

  • 0

Guilherme Becker, você tem razão. Deve ser a versão do mysql que está dando problema. Criei um banco, fiz a query e não ocorreu nada anormal... Pode ser que a sua versão não suporte MyISAM. Talvez isto possa ajudar: http://dev.mysql.com/doc/refman/5.0/en/myi...age-engine.html

Se você trocar o 'TYPE=MyISAM' por 'TYPE=ISAM' ou então não especificar o tipo, a query funciona?

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.

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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...