Jump to content

#1067 - Invalid default value for 'userid'


dfi

Recommended Posts

I'm using MySQL 4.1 and an online tutorial to create a password-protected Flash homepage.  The tutorial instructs me to use this script to create a table in MySQL.

 

--------------------------------------------------------

CREATE TABLE auth (

  userid

    int(4)

    unsigned

    zerofill

    DEFAULT '0000'

    NOT NULL

    auto_increment,

  username varchar(20),

  userpassword varchar(20),

  PRIMARY KEY (userid)

);

--------------------------------------------------------

 

When I enter that script, I get this error from MySQL.

 

--------------------------------------------------------

Error

 

SQL query:

 

CREATE TABLE auth(

useridint( 4 ) unsignedzerofillDEFAULT '0000' NOT NULL AUTO_INCREMENT ,

username varchar( 20 ) ,

userpassword varchar( 20 ) ,

PRIMARY KEY ( userid )

)

 

MySQL said: Documentation

#1067 - Invalid default value for 'userid'

--------------------------------------------------------

 

I know Flash well, but I am very new to MySQL.  Any help would be greatly appreciated to get me passed this error.  Thank you in advance.  Here is the link to the tutorial that I'm using.

http://www.kirupa.com/developer/actionscript/authentication.htm

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.