| 184 | # going to do this, so see how this pushes you right back into |
| 185 | # ORM land anyway :) |
| 186 | class SimpleCustomer: |
| 187 | def __init__(self, id_, name, description): |
| 188 | self.id_ = id_ |
| 189 | self.name = name |
| 190 | self.description = description |
| 191 | |
| 192 | sql = str(compiled) |
| 193 |