On 16 Nov 2013, at 00:23, Tim Pierson <tim.pier...@gmail.com> wrote:

> Happy Friday night everyone.
> 
> Maybe there's an easy way to deal with this:
> How can I use the SQLSoup insert function to update columns whose names 
> contain whitespace?
> 
> ie:  db.table.insert(XML Schema Version=None)
> 
> Are there any cool tricks I don't know?
> Thanks
> 

How about:

  values = {‘XML Schema Version’: None}
  db.table.insert(**values)

Hope that helps,

Simon

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to