You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this may be the best route for supporting native Python objects from Statements.
Rather than using a statement wrapper, just have the Statement.namedtuples() convert. It doesn't make much sense to pack Postgres types into as rows() suffices well enough.
Statement.namedtuples() -> iterator
Statement.namedtuple() -> next(Statement.namedtuples(...)) or None
The text was updated successfully, but these errors were encountered:
I think this may be the best route for supporting native Python objects from Statements.
Rather than using a statement wrapper, just have the Statement.namedtuples() convert. It doesn't make much sense to pack Postgres types into as rows() suffices well enough.
Statement.namedtuples() -> iterator
Statement.namedtuple() -> next(Statement.namedtuples(...)) or None
The text was updated successfully, but these errors were encountered: