I read about the Serializer Extension and ask myself if it is a good solution for my problem.
Currently I am using PostgreSQL under my sqlalchemy. There is no way to make PostgreSQL database "portable" because the database is not represented as one file I could just copy to another machine. So when I want to use my application "portable" I think it would be a good workaround to create a dump-file of the database when the application is closed and restore it when it is started. So application doesn't have to think about on which machine it is running. I could access PostgreSQL directly on commandline but it is not platformindependent. I want to do it with the sqlalchemy-way. Would the Serializer Extension be a good solution for that? -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
