All Questions

2
answers

Does Oracle 11g save the date of the inserts made?

I have a table like the following in oracle: SELECT * FROM ESTUDIANTES; ID NOMBRE EDAD -- ------ ---- 1 Pepe 23 2 Maria 35 ... Can I find out in some way what date the insert was made in that table?     
asked on 14.12.2017 / 11:13
4
answers

Loses the css after refreshing datatable

I have a datatable in which in a column there is a select2 , this select2 I have assigned a color according to the selected value, for it to bring me the data of that column I call a function that checks according to the id o...
asked on 22.12.2017 / 12:41
3
answers

Application Title seen in the TOOLBAR

Currently I have the problem that the name of the application <string name="app_name">Banred</string> I get it in the Toolbar of the main menu and I really do not want the name to be seen My toolbar is...
asked on 21.12.2017 / 18:12
2
answers

Execute a procedure stored in Advantage Data Architect

I am creating an application with the Advantage database server. I want to insert a data using the stored procedure I tried an input parameter, this is the stored procedure: CREATE PROCEDURE SP_FolioComp ( @NumFolio CHAR ( 11 ) ) BEG...
asked on 20.12.2017 / 00:08
1
answer

How to refactor excess of conditions if?

I have the following block of code: data.split('\n').map(l => { if (/^videoW/.exec(l)) { vidConf.videoW = l.split('=')[1] } if (/^videoH/.exec(l)) { vidConf.videoH = l.split('=')[1] } if (/^videoT/.exec(l)) {...
asked on 21.12.2017 / 19:13
1
answer

"Element style not allowed as a child of element body in this context"

I am learning web development and I am validating my code in the NU HTML checker, but it throws me this error: Element style not allowed as child of element body in this context. (Suppressing further errors from this subtree.)...
asked on 20.12.2017 / 18:49
2
answers

vertically position

How can I position the first 2 inputs one below the other, but that they are aligned , which does not allow them to be aligned are the words on the left side. .encima { display: flex; } <div> <div class="encima">...
asked on 14.08.2018 / 22:34
2
answers

Draw squares aligned in a row

how to draw several squares, my html structure is: I think it draws but I want to space them 1px, and I want to draw more boxes up .cajas { width: 5px; height: 5px; padding-right: 3px; background-color: red; } .ca...
asked on 08.12.2017 / 05:03
1
answer

Confirm button "delete" in CRUD

Good afternoon, I have a code that works with an id="confirm" so you have to confirm before deleting a record from a CRUD using datatables. The problem is that since it is a crud, it can not work with ID's since there would be several elem...
asked on 20.12.2017 / 19:31
2
answers

Question about if else statements

Simple question of a newbie, I do not understand why the numerical 0 gives me a pair in this case, I want it to be 0 , '' , isNaN me% 'Por favor, introduce un valor numérico válido' : let numeroUsuario, modulo;...
asked on 13.12.2017 / 15:48