I have a table called "advertisement", where I need to register the information coming from other 03 tables, they are:
State Tables, Cities and Neighborhoods.
The purpose is for the user to register the properties via the form, adding info...
What are the differences between Tuple and List in Python ?
Example:
>a = [1, 2, 3]
# [1, 2, 3]
>b = (1, 2, 3)
# (1, 2, 3)
The Tuple , grotesquely speaking, is a constant that accepts List ?
I have long worked with MVC frameworks in PHP, such as Symfony , Laravel and Codeigniter .
Generally, when it comes to the Views framework, there are always features to make it easier to include files like Css and...
I have the script below to use in a menu. It changes the visibility of a specific element by its ID. Clicking on a main menu opens a submenu.
Is there any way to change the script so that when clicking on another menu the previous submenu clo...
I need to use a ResultSet that returned the data from a query in the Database. I am making a very generic class, it will be able to be used on any table, so I do not know what kind of data it is returning.
For example, the Name column will re...
To solve a problem I ended up with two solutions where in an era the CAST() to convert a number to text, in another era the CONVERT() for the same effect.
The two functions, the same practical effect:
SELECT (CAST(10 AS...
What is the advantage / difference of using separate banks, one for reading and one for writing?
In my conception there is no such concept. The writing bank, one hour will have to be read to replicate the data in the read, which in turn will...
I'm deleting a folder from my hard drive and I was able to delete everything except this file.
Because it has quotation marks, I can not use short names, and I can not erase it the way it is.
I've tried fsutil file setshortname , but...