Posts by Gabriel Andrade • 1 point
3 posts
-
0
votes2
answers133
viewsA: COMMIT inside a CURSOR
The data you need to copy can be grouped by some attribute. Ex: Some date? If possible you could perform the inserts by grouping the data by month or year. INSERT INTO table (column1, column2, ...…
oracleanswered Gabriel Andrade 1 -
-2
votes2
answers114
viewsA: Using the Click event inside an IF
Try this verification within the method lblCor_Click. This way you wouldn’t need to put the launch of the event inside the loop. Ex: private void lblCor_Click(object sender, EventArgs e) { if…
c#answered Gabriel Andrade 1 -
-2
votes2
answers63
viewsA: Function of free() in abstract types
Nelson, do the following test: for(int i = 0;i<3;i++) { free(turma[i]); } for(int i = 0;i<3;i++) exibeAluno(turma[i]);