How do I load an Array or Bulk into a PLSQL and then read this as a table.
Example
DECLARE
VA_ARRAY ....DEFINIÇÃO DO ARRAY
VN_QTD NUMBER;
BEGIN
-- TABELA01 É UMA TABELA FÍSICA EXISTENTE NO BANCO
SELECT * BULK COLLECT INTO VA_ARRAY F...
Today I tried to make a login system (again), but this time I used a one-dimensional array to save my values. When I ran my program, Eclipse accused an error (null pointer to be more specific), my theory is that assigning a value to array ca...
What happens when I call a function, recursively, without assigning its return to a variable? Why is it not necessary, in this case, to explicitly assign the mergeSort function to the array variable?
public static int[] mergeSort(int[...
When using the new() command to create any object, we call the constructor of that object's class and get the reference to the created instance. However, what happens when creating an Array?
Where do you point to (I know this term is i...
I have an Angular app that uses the Maps API to fetch latitude and longitude, but I can not get latitude and longitude separately.
My application works as follows, the user types the zip code and the system using the ViaCEP API loads all data...
Good evening!
I need to create a function that accepts an array of numbers and returns true if it contains at least an even number and false , otherwise.
The code below even does this, SQN:
var ParOuImpar = function(num){
var i, co...
I have the following code below:
memo1.Lines.Add('def' + ' ' + nome + ' ' + '('+ variavel1 +',' + ' '+ variavel2 + ',' + ' ' + raster1 + ')' +':');
That results in something like this:
def nome (variavel1, variavel2, raster):
But I wou...
I made these queries below to get the data from the buyer's database and the products he bought. With the first query, I took the ID of the requests and with these IDS I made a new foreach that took the products that each ID acquire...
In the database I have a TEXT where an array is saved in this format:
[
[ resumo: null ]
[ datainicio: 2015-09-17T00:00:00.000-0300 ]
[ datafim: 2015-09-22T00:00:00.000-0300 ]
[ equipamento: 3421 ]
]
I need to retrieve...
Let's suppose I have an array like this:
$matrix = [[0, 1, 1, 0],
[1, 1, 1, 0],
[1, 0, 0, 0]];
Imagine that you are looping and capturing the position of this array as in the example below, y lines with my arrays and...