Skip to content

Commit dd075df

Browse files
author
Joel Christner
committed
README update
1 parent d74a97a commit dd075df

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# RestDb
22

3-
RESTful HTTP/HTTPS server for Microsoft SQL Server and MySQL database tables written in C#.
3+
RESTful HTTP/HTTPS server for Microsoft SQL Server, MySQL, and PostgreSQL database tables written in C#.
44

55
## Description
6-
RestDb spawns a RESTful HTTP/HTTPS server that exposes a series of APIs allowing you to perform SELECT, INSERT, UPDATE, DELETE, and TRUNCATE against tables in Microsoft SQL Server and MySQL.
6+
RestDb spawns a RESTful HTTP/HTTPS server that exposes a series of APIs allowing you to perform SELECT, INSERT, UPDATE, DELETE, and TRUNCATE against tables in Microsoft SQL Server, MySQL, and PostgreSQL.
77

8-
## New in v1.0.1
9-
- Authentication via API key
8+
## New in v1.0.2
9+
- PostgreSQL support
1010

1111
## Running in Mono
1212
Before starting in Linux or Mac environments, you should run the Mono AOT.
@@ -105,6 +105,7 @@ Be sure to use timestamps appropriate to your database type, for instance:
105105

106106
- MSSQL: MM/dd/yyyy HH:mm:ss
107107
- MySQL: yyyy-MM-dd HH:mm:ss
108+
- PGSQL: MM/dd/yyyy HH:mm:ss
108109
```
109110
POST http://localhost:8000/test/person
110111
Data: { first_name: 'joel', last_name: 'christner', age: 40, created: '05/03/2017' }
@@ -246,6 +247,7 @@ To enable authentication, set ```Server.RequireAuthentication``` to ```true``` a
246247
## Version History
247248
Notes from previous versions (starting with v1.0.0) will be moved here.
248249

249-
v1.0.0
250+
v1.0.x
251+
- Authentication via API key
250252
- Initial release
251253

0 commit comments

Comments
 (0)