Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/dieselpoint/norm.git
Browse files Browse the repository at this point in the history
  • Loading branch information
ccleve committed Nov 30, 2020
2 parents 99be2fa + d6f00eb commit f00f3e9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Database db = new Database();

Person joe = new Person();
joe.firstName = "Joe";
joe.lastName = "Biden";
joe.lastName = "Sixpack";

db.insert(joe);

List<Person> people = db.where("lastname=?", "Biden").orderBy("lastName").results(Person.class);
List<Person> people = db.where("lastname=?", "Sixpack").orderBy("lastName").results(Person.class);
```

The `Person` class:
Expand Down Expand Up @@ -261,8 +261,7 @@ Finally, you'll need to include your JDBC driver as a dependency. Here's a sampl

****

That's about it. Post any bugs or feature requests to the issue tracker. Post any support requests to Stack Overflow.

That's about it. Post any bugs or feature requests to the issue tracker.



Expand Down

0 comments on commit f00f3e9

Please sign in to comment.