0

I'm using SQLAlchemy to record the sql executed (using echo=True) so that I can then import that file directly (after a bit of clean-up). Problem is, the file is full of this:

INSERT INTO professors (department_id, id, first_name, last_name, 
    preferred_name, email_alias, user_id, created_at, updated_at, middle_name) 
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)

So clearly, it's not giving me the final form of the string which I need.

van
  • 74,297
  • 13
  • 168
  • 171
aa260022
  • 87
  • 1
  • 11

1 Answers1

0

Your questions has two parts to it:

Short answer to the second part is: you cannot without tempering with the source code. See this start line in the repository if you decide to play with it.

Community
  • 1
  • 1
van
  • 74,297
  • 13
  • 168
  • 171