dargres 2.1.0
dargres: ^2.1.0 copied to clipboard
Dargres is a pure-Dart PostgreSQL driver based on Python pg8000
1.0.0 #
- Initial version
1.0.1 #
- fix bug on insert with prepared statement and implement queryUnnamed method for execute a prepared unnamed statement
2.0.0 #
- migrated to null safety
2.1.0 #
- placeholder identifier option implemented in queryUnnamed and prepareStatement methods,
this makes it possible to use the style similar to PHP PDO in prepared
queries Example:
queryUnnamed('SELECT * FROM book WHERE title = ? AND code = ?',['title',10],placeholderIdentifier: PlaceholderIdentifier.onlyQuestionMark)