Unsupported Screen Size: The viewport size is too small for the theme to render properly.

What Is This Called?

forums forums SQLyog Using SQLyog What Is This Called?

  • This topic is empty.
Viewing 3 reply threads
  • Author
    Posts
    • #11532
      samXR
      Member

      hey i got a question.at the side of SQLyog.there is “infomation_schema” , “my_bd” , “mysql” and “test”.what is that called??

      Then if i click on the plus sign of test..then a few column pop out..What is that called too??

      i need to know the names because i have to execute some php codes with that 'unknown' name..

      Any help would be great..thanks a lot..

    • #29120
      peterlaursen
      Participant

      “infomation_schema” , “my_bd” , “mysql” and “test” are the databases on the server. If you click the + objects (tables and other objects) in each databases will show.

      “infomation_schema” and “mysql” are mysql system databases.

      “test” is a database that gets installed when mysql get installed. This is not impotant. Actually it is recommended to drop it on production servers.

      “my_bd” must be a database that you or some application-installer created.

    • #29121
      samXR
      Member
      peterlaursen wrote on Jun 16 2009, 07:33 AM:
      “infomation_schema” , “my_bd” , “mysql” and “test” are the databases on the server. If you click the + objects (tables and other objects) in each databases will show.

      “infomation_schema” and “mysql” are mysql system databases.

      “test” is a database that gets installed when mysql get installed. This is not impotant. Actually it is recommended to drop it on production servers.

      “my_bd” must be a database that you or some application-installer created.

      what are their name??

      i need to extract them in my php codes..

      i need to replace particulars with the “name”..

      thank you..

      :::::::::::::::::::::php codes:::::::::::::::::

      Select a Database Name :

    • #29122
      peterlaursen
      Participant

      I do not understand. The name of the databases are what SQLyog displayes (“test” etc.)

      In a SELECT statement like “SELECT * FROM Particulars”, 'Particular' is a table and not a database. You may write the full syntax like “SELECT * FROM somedatabase.Particulars ” or you may send a “USE somedatabase”.

Viewing 3 reply threads
  • You must be logged in to reply to this topic.