From 9e8af5acec713ba783ca47b04e0443224d5553e6 Mon Sep 17 00:00:00 2001 From: marcin Date: Fri, 19 Apr 2019 17:12:38 +0200 Subject: [PATCH] initial commit --- mysql_python/README.md | 10 ++++++++++ postgres_cpp/README.md | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 mysql_python/README.md create mode 100644 postgres_cpp/README.md diff --git a/mysql_python/README.md b/mysql_python/README.md new file mode 100644 index 0000000..4a400ea --- /dev/null +++ b/mysql_python/README.md @@ -0,0 +1,10 @@ +##Note: +This script requires [mysql.connector](https://dev.mysql.com/downloads/connector/python/). +``` +pip install mysql_connector +``` + +##Variables: +HOST - address of the MySQL server, +DATABASE - database on the server you wish to operate on, +SQL - your query. \ No newline at end of file diff --git a/postgres_cpp/README.md b/postgres_cpp/README.md new file mode 100644 index 0000000..3c6d7d7 --- /dev/null +++ b/postgres_cpp/README.md @@ -0,0 +1,7 @@ +##Note: +This script requires [libpqxx library](https://www.tutorialspoint.com/postgresql/postgresql_c_cpp.htm). + +##Variables in ```cpp #define ```: +HOST - address of the MySQL server (IPv4 form), +DATABASE - database on the server you wish to operate on, +SQL - your query. \ No newline at end of file