Inspiration (how to make best DB tools ever) #236
Closed
emil14
started this conversation in
Databases/DB
Replies: 1 comment
-
Too broad |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Take a look at
Extra: old-way SQL generators
Conclusion 1. SQL must not be written at hand
I am struggling with SQL embedded in Go code because there's no intellisense - I can misspell columns or write meaningless who the hell knows what and only know that at runtime (if that code will be executed at all when I'm testing it). Must be code generators that will generate models (messages) for me that I can simply import and use with autocomplete and refactoring tools.
Problem 1. What about operations (select/insert/delete/update)?
Beta Was this translation helpful? Give feedback.
All reactions