connection to MySQL from Hyperion/BRIO

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rgoyal
    New Member
    • Sep 2006
    • 1

    connection to MySQL from Hyperion/BRIO

    We are using Hyperion suite 8.3.0 and trying to create connection to MySQl. Does anybody has any idea on what is needed to do this and how to do this.

    Thanks a lot
    Ranjna
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    We cannot see how you did the connect (where is the code?). Usually you execute commands like
    Code:
    // connect to the MYSql server
    $db=mysql_connect("servername", "username", "password") 
       or die(mysql_error());
    //  Connect to your data base
    mysql_select_db("dbname") 
       or die(mysql_error());
    What did you do?

    Ronald :cool:

    Comment

    Working...