aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2022-09-04 00:51:02 +0100
committerRichard <q@1bpm.net>2022-09-04 00:51:02 +0100
commit6eb4f0c0df719003e40f68c6501160aa83fcf188 (patch)
tree6c4752ee52a1090506e58f377a79192abbe0c29b
parent61f567d510c780549326a840cbd6c37769a1a93a (diff)
downloadcsound-sqldb-master.tar.gz
csound-sqldb-master.tar.bz2
csound-sqldb-master.zip
documentation updateHEADmaster
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index f77651e..bdbfff6 100644
--- a/README.md
+++ b/README.md
@@ -22,24 +22,24 @@ Aside from the connection opcode, there are three groups available for each to a
### MySQL
Connector/C++ (https://dev.mysql.com/downloads/connector/cpp/)
- # apt get install libmysqlcppconn-dev
+ # apt-get install libmysqlcppconn-dev
### PostgreSQL
libpq (https://www.postgresql.org/download/)
- # apt get install libpq-dev
+ # apt-get install libpq-dev
### SQLite
libsqlite (https://www.sqlite.org/download.html)
- # apt get install libsqlite3-dev
+ # apt-get install libsqlite3-dev
## Building
Create a build directory at the top of the source tree, execute *cmake ..*, *make* and optionally *make install* as root. If the latter is not used/possible then the resulting libsqldb.so can be used with the *--opcode-lib* flag in Csound.
eg:
- git clone https://github.com/1bpm/csound-sqldb.git
+ git clone https://git.1bpm.net/csound-sqldb
cd csound-sqldb
mkdir build && cd build
cmake ..
@@ -48,6 +48,7 @@ eg:
## Examples
A number of examples are included in the examples directory. Generally the syntax of each opcode is agnostic to the database type used, so the different techniques in each can be used for any database type.
-
+## Reference
+OpcodeDocumentation.md contains an explanation of all provided opcodes.
By Richard Knight 2019