Reputation: 51
I'm looking for examples of a basic CRUD application in Dart utilizing a postgres database.
I found a stack question from user cc young that described a dart web server with dart clients and I was wondering how to implement such a solution.
"... running dart web server, with dart on clients as well. web data is saved in files and in a postgres database." (Should a Dart web server use UTF-16 encoding for everything?)
Upvotes: 3
Views: 2779
Reputation: 13560
There is a pub package available for working with PostgreSQL databases. The readme provides some usage examples.
Upvotes: 1