PG arrays ? you can do it like this: from sqlalchemy.databases.postgres import PGArray
engine.execute(select([func.my_procedure(literal(['a', 'b', 'c'], type_=PGArray(String)))])) On Sep 7, 2007, at 8:22 AM, Kai_002 wrote: > > Hello, > > I want to call a stored procedure which takes an array as input. > Provides sqlalchemy an opportunity to call a procedure with an array > as parameter? > > Also, I'm looking to find a solution to transform a set into an array > string (ARRAY[..,..]), but I can't find it in sqlalchemy. > > Thanks > Kai > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
