Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
3 Risposte
22847 Visualizzazioni

I am trying to retrieve a list in my database. My statement is this:

    cr.execute("select es.* from student_resource es where es.date between '"+str(date_from)+"' and '"+str(date_to)+"'")

where date_from and date_to are of type fields.date but when when executed, that is i am trying to access my view, it says:

TypeError: cannot concatenate 'str' and 'int' objects

What did i miss with my statement?

Avatar
Abbandona
Risposta migliore

Hello,

As your fields are fields.date then you do not need to convert into string. Please write your query as like below.

cr.execute("select es.* from student_resource es where es.date between '" + date_from + "' and '" + date_to + "' ")
or
cr.execute("select es.* from student_resource es where es.date between '%s' and '%s' " %(date_from, date_to) )
Update : or
query = "select es.* from student_resource es where es.date between '%s' and '%s' " %(date_from, date_to)
cr.execute(query)

When you retrieve any date/datetime value from data base into any python variable it is always in string s

o no need to convert into string. 

I hope it will resole your issue.

Thanks. 

Avatar
Abbandona
Autore

I've tried your suggestion sir but I get "ValueError: unsupported format character 'W' (0x57) at index 545" when i try "...between ? and ? ",(date_from, date_to) )" i get "IndexError: tuple index out of range"

Just try as I have updated my answer. I have test it at my side it is executed perfectly.

Risposta migliore

I think you can use the to_date() in psql for that.

Try like this:

cr.execute("select es.* from student_resource es where es.date between to_date(date_from, 'YYYY/MM/DD') and to_date(date_to, 'YYYY/MM/DD')")  
OR
cr.execute("select es.* from student_resource es where es.date between to_date("+str(date_from)+", 'YYYY/MM/DD') and to_date("+str(date_to)+", 'YYYY/MM/DD') ")

Avatar
Abbandona
Risposta migliore

Quoting Psycopg official references (see here) :

Psycopg casts Python variables to SQL literals by type. Many standard Python types are already adapted to the correct SQL representation.

Don't manually add single quotes depending of the data type, let Psycopg do that for you.

cr.execute( 
"""INSERT INTO some_table (an_int, a_date, a_string) VALUES (%s, %s, %s);""", (11, datetime.date(2007, 07, 27), "Odoo rocks!"))

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
dic 19
4379
1
mar 15
6450
0
feb 16
3069
2
ago 15
6773
1
ago 15
4771