RSS
Follow Us
Contribute
 
 
 
 

Can't find file: '(X)' (errno: 2)

 
We need YOUR SKILLS in this collaborative work, to build the largest solution center for error messages.

From $1

Table of contents
  1. 1. Cause
  2. 2. Solution

Cause

This error message appears in MySQL. It is very similar to "Table (X) doesn't exist" error message. Both of these error messages mean that the table with the given name doesn't exist in the database.

Solution

You can create table by using "CREATE TABLE" command. Ex:

CREATE TABLE users (name VARCHAR(10), surname VARCHAR.(10));

Tags:
 
 
 
 
Comments