Original Post — Direct link

Hello, I'm building a web app in django and I haven't used models at all, opting to use connections.cursor writing my own queries in sql instead which I'm much more comfortable with. Is this wrong ? Am I missing out on performance or security advantages ?

External link →
almost 4 years ago - /u/itmightbedave - Direct link

It isn’t wrong, but you’re missing out on a lot Django has to offer in the long run. If you just need a framework to handle routes and views, Flask may be a better fit.