Questions tagged [crud]
The four basic operations for a data management system: Create, Read, Update, Delete
54 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
1
answer
68
views
Finance Manager with Embedded Database
I made an CRUD application in Java with JavaFX, H2 Embedded Database and Maven. Can you review my code quickly? Is it well written? What should I improve on it? I don't know if my code is written ...
0
votes
1
answer
111
views
A practice program to manipulate a database table using dependency injection [closed]
I am learning dependency injection and trying to use this pattern on practice. I am trying to write simple program where the user can write something to database, delete row and clear all rows from db....
0
votes
1
answer
72
views
When to use IllegalStateException [closed]
I am implementing an API that implements an interface, but I do not need to implement all methods.
In that case, is it better to just return null or throw an IllegalStateException because it if not ...
3
votes
1
answer
182
views
JavaFX CRUD app for rescue animals
I'm fairly new to Java, and I've been working on the following program. It's a basic CRUD app utilizing JavaFX and MVC design pattern. I'm seeking advice because the class I took on Java only covered ...
0
votes
1
answer
202
views
Movie library system
I want to implement a crud movie library system and also some filtering capabilities.
Since it is so big, I have added the link to the code.
https://github.com/neslihanbozer/Movie-Library.
I am aware ...
4
votes
4
answers
547
views
Functions in PHP to run basic MySQL crud
I wrote a list of functions in PHP that I want to use in my pet project as an autoloaded file for all parts of the app. The purpose of these function is to shorten the code you write for MySQL queries ...
1
vote
0
answers
62
views
UPDATE on Newspaper Bill Calculator CLI with Python (3 of 3, Database)
Code is posted after explanation.
Due to the size of the project, this is being posted in three separate posts. This also ensures each post is more focused.
Post 1 of 3, Core: UPDATE 1 on Newspaper ...
5
votes
1
answer
482
views
A lightweight CRUD, based on the Table Data Gateway pattern
In order to reduce the boilerplate code, I decided to write a lightweight database helper, based on the Table Data Gateway pattern (or at least the way I understand it) with the aim of using it for a ...
4
votes
2
answers
546
views
Adding, removing, and changing user names and passwords in .htpasswd with PHP
Here is some code I wrote to add, remove, and change user names and passwords in .htpasswd with PHP:
...
2
votes
1
answer
321
views
PHP Laravel Order generation Custom Class
Here is a custom class I use to handle different types of orders in Laravel. This question includes the code regarding Order Type A. I want to know whether I can simplify the code. I have different ...
4
votes
1
answer
149
views
F# method to insert, update, or delete events in a dictionary
I have the following code:
...
4
votes
1
answer
2k
views
Rest Api with generic crud operations
I am learning how to create a rest api in which I've decided to use generic for crud operation. I am attaching the code which I have written so far. Please have a look. Thanks for the review in ...
3
votes
0
answers
232
views
Fulfillment webhook with Dialogflow to operate on a Firestore database
I'm currently calling a fulfillment webhook with dialogflow in my node backend, performing crud operations on a firestore db. Is there a better, cleaner way to ...
1
vote
1
answer
189
views
Simple CRUD back-end for an inventory-tracking web API
This is the simple back-end, albeit crude, that I made for a React Native mobile app project as a proof of concept. It's a basic CRUD for tracking supply inventory. The "shopping list" is items with a ...
4
votes
1
answer
214
views
Simple view for CRUD with miglayout
I have created the following view extending the JPanel class, the objective of this view is to allow the user to perform 3 CRUD operations create,delete and modify on the entity "Attribute", this ...