Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
8508 Vues

I have application made by PHP and I want TO make Control panel for this application in openerp How Can I made it ,

Please Help me for this Issue I will Thank full for your helping me .

Thank you

Avatar
Ignorer
Meilleure réponse

Hello Mohammed,

If you need sample code for connecting Mysql Database than here you go!

@Need to install mysql library in your system.  Here you will find how to setup mysql php in your sever. Click Here

    import MySQLdb

    # Mysql Connection #

    db = MySQLdb.connect(host="server_ip", port=3306, user="root", passwd="root", db="database_name")

    cursor = db.cursor()

    cursor.execute("write your query here")

    data = cursor.fetchall()

    print "Data :::",data

Now Manupulate this database wherever you want in your odoo system.

These is sample code to connect with your mysql database, You can use this connect with your mysql database from odoo and you can trigger your operation to mysql.

Now in odoo create some menu and action which trigger this script and allow you to connect  with your mysql database.

Hope this will help.


Regards,

Anil.

Avatar
Ignorer
Publications associées Réponses Vues Activité
0
sept. 15
6041
0
mars 25
1512
4
avr. 24
174371
0
déc. 23
2279
5
juil. 25
228493