Skip to content
This repository was archived by the owner on Mar 2, 2019. It is now read-only.

Conversation

alexfu
Copy link
Owner

@alexfu alexfu commented Jan 15, 2016

Adds basic support for insert statements. Usage:

String sql = SQLiteQueryBuilder.insert()
  .into("people")
  .columns("id", "name", "timestamp")
  .values(1, "John", Calendar.getInstance())
  .build();

which will result in...

INSERT INTO people (id,name,timestamp) values (1,'John','2016-01-15T07:22-0500')

alexfu added a commit that referenced this pull request Jan 15, 2016
Support for insert statements
@alexfu alexfu merged commit db280f9 into develop Jan 15, 2016
@alexfu alexfu deleted the feature/insert branch January 15, 2016 12:32
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant