Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Postgraphile | 11,955 | 76 | 99 | 7 days ago | 156 | May 25, 2022 | 67 | mit | TypeScript | |
Execute one command (or mount one Node.js middleware) and get an instant high-performance GraphQL API for your PostgreSQL database! | ||||||||||
Risingwave | 4,423 | 8 hours ago | 753 | apache-2.0 | Rust | |||||
🚀SQL stream processing with Postgres-like experience. 🪄More than a modern alternative to Apache Flink. | ||||||||||
Pgadmin4 | 1,424 | a day ago | 453 | other | Python | |||||
pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. | ||||||||||
Aiopg | 1,283 | 7 months ago | 1 | March 24, 2020 | 67 | bsd-2-clause | Python | |||
aiopg is a library for accessing a PostgreSQL database from the asyncio | ||||||||||
Fullstack Apollo Express Postgresql Boilerplate | 976 | 3 years ago | 38 | mit | JavaScript | |||||
💥 A sophisticated GraphQL with Apollo, Express and PostgreSQL boilerplate project. | ||||||||||
Binexport | 873 | 9 hours ago | 21 | apache-2.0 | C++ | |||||
Export disassemblies into Protocol Buffers | ||||||||||
Flask Gentelella | 527 | 2 years ago | mit | HTML | ||||||
Gentelella template powered by Flask | ||||||||||
Pg_view | 429 | 1 | 3 years ago | 4 | March 13, 2017 | 26 | other | Python | ||
Get a detailed, real-time view of your PostgreSQL database and system metrics | ||||||||||
Datanymizer | 407 | 9 days ago | 21 | mit | Rust | |||||
Powerful database anonymizer with flexible rules. Written in Rust. | ||||||||||
Sqlserver2pgsql | 404 | 10 months ago | 1 | gpl-3.0 | Perl | |||||
Migration tool to convert a Microsoft SQL Server Database into a PostgreSQL database, as automatically as possible |
Sample code of cpprestsdk (casablanca)
This repo contains a sample of cpprestsdk server side in very simple format. sample handles 4 method of http request [put, get,post and delete]. almost every function/class name is a self documentation of it's functionality.
project structure
[main.cpp] [include/handler.h] [src/hander.cpp]
How to compile :
cmake .
make
run server ./Build/bin/restserver
[ For mac, mac branch is recommanded. ]
[
For Windows (Visual studio solution) (checkout vs15_v140 branch )
] ##############################################
{#dbms folder is a independent project right now to access database before enable to install some prerequsites} 1) install postgresql; install pqxx (sudo apt-get install libpqxx-dev) and libpq if it is not installed with postgresql ((sudo apt-get install libpq-dev)
dbms support can be added ( right now Postgresql only) by doing following steps
//#include "../dbms/include/Dbms.h"
//Dbms* d = new Dbms(); //d->connect();
How to complie :
cmake . -DDBMS=ON make
run server ./Build/bin/restserver
now all done . just implement/replace own logic.