any MYSql Buffs on

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MBS Auto
    Confirmed User
    • Oct 2004
    • 1725

    #1

    any MYSql Buffs on

    I am trying to creat a simple freakin table and it is not working, keep giving me this stupid error





    and this is the table
    Shoes and Boot
  • MBS Auto
    Confirmed User
    • Oct 2004
    • 1725

    #2
    BUMP!! Promise it will never happen again
    Shoes and Boot

    Comment

    • lloyd
      Confirmed User
      • May 2002
      • 798

      #3
      mght you be running a version that doesnt support innodb?

      Comment

      • MBS Auto
        Confirmed User
        • Oct 2004
        • 1725

        #4
        No, I get the same error for all storage types
        Shoes and Boot

        Comment

        • fr8
          Confirmed User
          • Mar 2003
          • 5074

          #5
          First mistake. Your using windows.
          Second im not sure about. I do know that an INNODB type table is for the hotbackup software that you can buy for a mysql database. do you have the that intalled? if so it should work like so.

          CREATE TABLE `goddess` (
          `id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
          `username` VARCHAR( 16 ) NOT NULL ,
          `password` VARCHAR( 16 ) NOT NULL ,
          `email` VARCHAR( 25 ) NOT NULL ,
          PRIMARY KEY ( `id` )
          ) TYPE = INNODB ;

          im not sure how you would add this through the gui but that is the commandline for the new table.
          joesmut (a) gmail Dot com
          Full Stack Developer

          Comment

          • fr8
            Confirmed User
            • Mar 2003
            • 5074

            #6
            CREATE TABLE `dbusers` (
            `id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
            `username` VARCHAR( 16 ) NOT NULL ,
            `password` VARCHAR( 16 ) NOT NULL ,
            `email` VARCHAR( 25 ) NOT NULL ,
            PRIMARY KEY ( `id` )
            ) TYPE = INNODB ;


            just noticed goddess was the database
            joesmut (a) gmail Dot com
            Full Stack Developer

            Comment

            Working...