Package edu.wpi.cs.wpisuitetng.database

Examples of edu.wpi.cs.wpisuitetng.database.Data.update()


  public void testUpdate() throws WPISuiteException{
    Data db = DataStore.getDataStore();
    User[] arr = new User[2];
    User firstUser = new User("Ryan", "rchamer", "password", 0);
    db.save(firstUser);
    db.update(User.class, "username", "rchamer", "name", "Mjolnir");
    User Mjolnir = db.retrieve(User.class, "username", "rchamer").toArray(arr)[0];
    assertEquals(firstUser, Mjolnir);
    db.delete(Mjolnir);
   
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.