MySql on Windows XP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Asher Golan

    #1

    MySql on Windows XP

    Which '.exe' file should I run in order to start the MySql Server ?
    How do I creat a new data base ?
    I learnt how to access MySql using php commands, but dont know how to create
    the database.
    Is there any GUI manager to access records stored on the MySql server ?

    Regards


  • Red Eye Media - Richard Grove

    #2
    Re: MySql on Windows XP

    "Asher Golan" <datamor@actcom .net.il> wrote in message
    news:newscache$ zcg3sh$7f8$1@ln ews.actcom.co.i l...[color=blue]
    > Which '.exe' file should I run in order to start the MySql Server ?
    > How do I creat a new data base ?
    > I learnt how to access MySql using php commands, but dont know how to[/color]
    create[color=blue]
    > the database.
    > Is there any GUI manager to access records stored on the MySql server ?
    >
    > Regards
    >
    >[/color]

    You'll find that once installed, the MySQL service automatically starts
    itself at startup.

    Regards
    Richard Grove
    http://redeyemedia.co.uk



    Comment

    • Wald

      #3
      Re: MySql on Windows XP

      "Asher Golan" <datamor@actcom .net.il> wrote:
      [color=blue]
      > Which '.exe' file should I run in order to start the MySql
      > Server ?[/color]

      Just fire up the "WinMySQLAd min" program, you can control the
      server with that just fine.
      [color=blue]
      > How do I creat a new data base ?
      > I learnt how to access MySql using php commands, but dont know
      > how to create the database.[/color]

      In PHP: mysql_create_db (...):


      Without PHP:
      - see MySQL documentation, section 3.3, "Creating and Using a
      Database": http://www.mysql.com/doc/en/Database_use.html

      - see below, with MySQLFront.
      [color=blue]
      > Is there any GUI manager to access records stored on the MySql
      > server ?[/color]

      I have always been very fond of MySQL-Front:



      MySQL itself has a program called "MySQL Control Center", but my
      personal feeling is that MySQL-front is more mature and bug free.

      A third option is to install, for instance, PHPMyAdmin on the
      server machine itself to manage your MySQL server:



      Regards,
      Wald

      Comment

      Working...