Skip to content

Instantly share code, notes, and snippets.

@showyou
Created February 12, 2010 17:43
Show Gist options
  • Select an option

  • Save showyou/302790 to your computer and use it in GitHub Desktop.

Select an option

Save showyou/302790 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
#! -*- coding: utf-8 -*-
import model
session = model.init()
m = model.TestModel()
m.id = 0
m.name =u"aaaaa"
session.save(m)
session.commit()
q = session.query(model.TestModel)
print q.one().id
print q.one().id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment