I have the following question:
When should I inactivate a record?
When should I delete a record?
In case you would like a good practice tip, on which tables does I make a STATUS column? If the tables have this STATUS column I will do an...
When should I and should not I use SQLite?
I have a project that I plan to do I have no idea how many tables are going to be, but I believe more than 15 with at least a thousand lines in some tables.
Would it be feasible to do it in SQLite...
I'm studying graphical interface in C, and I realized it's very complex and tiring.
So I wanted to know if there is a way to create a C program and use a graphical interface in Java or C #. With frameworks or not ...
I was doing some tests in Java and noticed a very strange behavior. I made a two-dimensional array and populated the array in two different ways, filling in random numbers up to 2 ^ 31-1 and just changing its index. I got a considerable performa...
Is it possible (if so how) to do the following method with JavaScript?
The person types in a form some arguments,
When you click send it will execute a JavaScript code,
In this code the function will get the form information and will ope...
I'm using the following workflow with git:
I define a task
I create a branch for it from the master
Implement the task
Pull in master
I merge my branch into master
I push the master
However, I skipped step number (2) and got all...
I want to make an implementation of the Repository pattern where I'll be using EntityFramework and have the following: p>
Interface IRepository :
public interface IRepository<T> where T : class
{
T GetById(int id);...
I would like to know what are the differences between these two CSS concepts, in order to understand and point out what is one, and what may be the other.
For example: :hover , ::before .
What I've understood so far is that -...