I'm writing a website in python where I need to use PostgreSQL as my DB.
I wanted to create a prepared statement for updating a table and I tried to create the set as:
a=dict(b=3, c='d', x=10)
keys=a.keys()
print ",".join([keys[i] + "=$" + str(i + 1) for i in range(0, len(keys))])
The output from this comes as
x=$1,c=$2,b=$3
which can be used to generate a prepared statement for update.
I wanted to know:
- Is there a better alternative for this?
- Is this a costly operation (should len(keys) be taken into a variable or is it an
O(1)operation) - Are there multiple for loops running internally? Does
a.keys()return a deep copy of keys or is it just a reference?