Jump to content

[SOLVED] Cant find the error


erdomester

Recommended Posts

Hi,

I have this simple php code. I stopped using Ms Access but was lazy to create all the tables again so I converted the Access tables to Mysql. This created a "bus" directory with all the tables. Now I am trying to turn my code to be suitable for MySQL, but encountered this problem. I checked several tutorials but I seem to be blind. What is it giving me the error:

Error in query: SELECT * FROM 86. 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 '86' at line 1

<?php 
$conn = mysql_connect("localhost","root","password");
if (!$conn)
  {
     die('Could not connect: ' . mysql_error());
  }

$db="bus";
mysql_select_db("bus", $conn) or die ("Unable to select database!");
$query = "SELECT * FROM 86";
$result = mysql_query($query) or die ("Error in query: $query. ".mysql_error());
if (mysql_num_rows($result) > 0) 
{
     while($row = mysql_fetch_array($result)) 
     {
        echo $row['minutes'] . " " . $row['stops'];
      }
  }
mysql_free_result($result);


?>

 

Link to comment
Share on other sites

Is 86 the tablename?

 

If not this is how the query should be formed:

 

$query = "SELECT * FROM table_name WHERE column = 86";

 

Replace the table_name and the column with their respected values. If it is suppose to be 86 for the table name try using backticks around it:

 

$query = "SELECT * FROM `86`";

Link to comment
Share on other sites

It is the tablename (number of bus). I've tried this already.

Maybe it has something to do with the conversion. Maybe it went wrong and I should create all tables. But what to do if I have 300 tables? Or let's suppose I have 10 tables in the db, and with the GUI Access it's easier and faster to create databases then I want to convert them...

 

Link to comment
Share on other sites

I think it might not be a valid name for table, although I can not find any reference to that.

 

[edit]

 

Seems it is valid after all

http://dev.mysql.com/doc/refman/5.0/en/identifiers.html

 

One could even call a table `;`

 

 

Anyway: as mentioned above, having a separate table for each bus line is probably not the best idea.

Link to comment
Share on other sites

I think it might not be a valid name for table, although I can not find any reference to that.

I once named my table 1 (the number one). Hehe... it worked for me, though it was only for testing and I was curious. You just need backticks.

Link to comment
Share on other sites

I think I have found the solution. However, it is valid in Access, making a number to be a name of a table in SQL is a mistake. I put a "B" to the beginning of the name of the tables in Access (e.g. 86 -> B86 and so on), converted them to MySQL and now it works. Thanks for reading and I hope this will help for many people.

Bye,

erdomester

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.