Guest User

Untitled

a guest
Oct 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. }
  2.  
  3. public void guardar(){
  4.  
  5. String Nombre = text.getText().toString();
  6.  
  7. SQLite base = new SQLite( this,"SQLite",null,1 );
  8. SQLiteDatabase bd = base.getWritableDatabase();
  9. ContentValues contenedor = new ContentValues();
  10. contenedor.put("NOMBRE", Nombre );
  11. contenedor.put( "FECHA",getDate() );
  12.  
  13. try {
  14. bd.insertOrThrow("TRABAJADOR",null,contenedor);
  15. Toast.makeText( getApplicationContext(),"Ingresado Correctamente",Toast.LENGTH_SHORT ).show();
  16.  
  17.  
  18. }catch (SQLException e){
  19. Toast.makeText( getApplicationContext(),"No Ingresado",Toast.LENGTH_SHORT ).show();
  20.  
  21.  
  22. }
  23. bd.close();
  24.  
  25. }
Add Comment
Please, Sign In to add comment