This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #Se selecciona nuestra bbdd | |
| USE demo001; | |
| #Creamos nuestra tabla | |
| CREATE TABLE COLORES( | |
| ID int, | |
| NOMBRE varchar(100), | |
| RGB varchar(6) | |
| ); | |
| #agregamos 3 registros | |
| INSERT INTO COLORES (ID, NOMBRE, RGB) VALUES (1,'Rojo','FF0000'); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | PS D:\opt\Java\visualvm_217\visualvm_217> tree | |
| Folder PATH listing for volume D | |
| Volume serial number is 7478-D7BC | |
| D:. | |
| ├───bin | |
| ├───etc | |
| ├───platform | |
| │ ├───config | |
| │ │ ├───ModuleAutoDeps | |
| │ │ └───Modules | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package demorugi01; | |
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.util.Scanner; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| /** | |
| * | 
OlderNewer