Posts by Fernando Tholl • 133 points
3 posts
-
1
votes0
answers56
viewsQ: Django Model Queryset - Insert record if it does not exist with only one query
I’m starting to use Jango and its ORM and I came up with a question. How can I check if the record exists in the database and if it does not already exist? This with only one query to the database.…
-
1
votes0
answers53
viewsQ: React and Redux, call with Dispatch to re-loop causing class-based component
My application combines React and Redux I have a class-based component called Login.js, a Slice called settingsSlice.js, and I’m using connect to access the state of that component. My files:…
-
1
votes2
answers1059
viewsQ: For database abstraction, should I use uppercase or lowercase column names?
I am developing an application that will need to connect to any database. I am using Laravel for this. Laravel’s ORM maps the database fields and provides my class as an attribute automatically, but…