تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3489 أدوات العرض

I'm creating new definitions on my custom module and I have some doubts about the cursors I need to use.

Since I have developed my script on PyCharm I've created my set of cursor

try:
con = psycopg2.connect(host='SERVERIP', database='DBNAME', user='odoo', password='XXXXX')
cur = con.cursor()

 where I use just

cur.fetchone(), cur.execute and con.commit()

As far I can see the file sql_db.py define the cursors that Odoo is using, starting with cr or cnx.

Since I would like to use my module with any db without insert new credentials I need to understand how Odoo is working.

Is technically correct to delete my connection and cursor declaration and use just the cr. already present on Odoo like

cr.fetchone(), cr.execute and cnx.commit()

or do I need to create a new layer?

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
سبتمبر 21
4488
0
مارس 15
5426
1
يوليو 25
1588
2
مارس 20
4905
5
ديسمبر 19
7916