This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:async'; | |
| import 'package:postgresql/postgresql.dart'; | |
| void main() { | |
| var username = "TheRightMan"; | |
| var password = "WithTheRightSecret"; | |
| var DBname = "AtTheRightPlace"; | |
| var uri = 'postgres://$username:$password@localhost:5432/$DBname'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library MIME; | |
| // get MIME type (returns null if there is no such extension) | |
| String mimeType(String extension) => _mimeMaps[extension]; | |
| // default MIME type mappings | |
| Map _mimeMaps = const { | |
| 'abs': 'audio/x-mpeg', | |
| 'ai': 'application/postscript', | |
| 'aif': 'audio/x-aiff', |