-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rendering to SQL for core data types #8
Comments
I'll give this one a go |
Wow, that's awesome. Good luck and let me know if you need any help! |
I'll finish watching the video before I do too much on this. is the intention to return |
I would aim for a simple string rendering. Currently we don't have parameterized queries, which would be necessary to generate We could consider this string rendering a step toward JDBC and also extremely useful for diagnostics / debugging / development. |
Closing this. @robmwalsh did a lot of work here. The rendering is now database specific. |
We should add rendering to SQL for core data types, with several options:
The use of
StringBuilder
is for performance reasons and can be hidden as a private implementation detail.Note that extreme care should be taken when rendering strings into SQL, as they must be properly escaped, to avoid SQL injection attacks.
The text was updated successfully, but these errors were encountered: