The type descriptions from that page are missing, and that paragraph is incorrect and out of date. In 0.6 we use UPPERCASE for vendor specific types since they are exactly what they are (in this case VARCHAR). Dialect specific types come from that dialect, see http://www.sqlalchemy.org/docs/reference/sqlalchemy/types.html#vendor-specific-types .
On Jul 29, 2010, at 1:04 AM, Trent Nelson wrote: > According to [1], the following should work: > > >>> import sqlalchemy > >>> sqlalchemy.__version__ > '0.6.3' > >>> sqlalchemy.String(14, collation='Latin1_General_CS_AS') > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: __init__() got an unexpected keyword argument 'collation' > > Thoughts? > > Trent. > > [1] > http://www.sqlalchemy.org/docs/reference/dialects/mssql.html#collation-support > > -- > You received this message because you are subscribed to the Google Groups > "sqlalchemy" group. > To post to this group, send email to [email protected]. > 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. > -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. 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.
