On 7/24/15 1:49 PM, Rich Shepard wrote:
  Because this is my first SQLAlchemy project and the schema file has 657
lines I would like to check for syntax errors before proceeding with the
next step in application development. I find no index in the SA manual and cannot find the string 'syntax check' in the PDF file. Web search turns up
nothing (which might be due to wrong search phrase).

Is there a way to check for proper syntax prior to having sufficient code
to try running the application?

Python syntax or SQL syntax? Typically in Python we rely on linters and runtime checks for this, same idea with SQL. If the SQL syntax is off, the database will tell you by sending an error to the driver which will result in an exception raise.

--
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 sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to