> What I'm not sure of at this point is if theres some cursor usage
> specific to the MS-SQL dialect that might be external to the
> ResultProxy....if Rick could comb through that for me that would be
> helpful.

The cursor is used pre_exec() if an INSERT statement tries to set a literal
PK on a sequence-like column (called IDENTITY in MSSQL). MSSQL needs to have
a special mode turned on to do those.

It's used in do_exec() to turn that "literal insert" mode back off.

Finally it's also used post_exec() after INSERT statements on tables with
IDENTITY columns to fetch the newly-inserted PK value.


that's about it for cursor usage -- nothing on SELECT, only inserts.









>
>
>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to