> thnx pb, made it partially working, after initialize_MyApp_db which > successfully created "models" table I still > get error in browser "Pyramid is having a problem using your SQL database"
Is there any exception show in your console where you run your pserve? > another question: how to define models for existing database tables and tell > pyramid not to alter my existing tables Your tables are created or modified by the initialize_MyApp_db script, so if you do not run it, the tables are not touched (unless you have put the actual code that modifies the tables elsewhere too). Just use your connection string to point to the actual database. Start with defining a model for one table, and when you have it connected, continue with the rest. -- Petr -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
