sql-library-processing
sql-library-processing copied to clipboard
SQLibrary – a SQL database library for Processing incl. MySQL, SQLite and PostgreSQL
I've added support for [DuckDB](https://duckdb.org/) - a lightning fast in-process OLAP database. I wasn't sure what to do with the version number so took the liberty of bumping the version...
The library zip file should have the [folder structure described in the library guidelines](https://github.com/processing/processing/wiki/Library-Guidelines#folder-structure) * `documentation` should be `reference` * `source` should be `src`
Hi, I posted this to The Processing Forum, Can you have a look ? I explain the problem. http://forum.processing.org/two/discussion/comment/45968#Comment_45968 Can you help ? Thank you for your library. It helps...
Attempting to use the library in Processing 3 gives the following error: NoSuchMethodError: You may be using a library that's incompatible with this version of Processing. Your library has been...
Make sure this is taken account for: http://dev.mysql.com/doc/refman/5.1/en/connector-j-reference-charsets.html ... there have been complaints about characters not showing up correct in Processing sketches. Review these and make tests to ensure it's...
fixed UTF8 encoding issue ref : https://coderwall.com/p/rvduyw/jdbc-inserting-unicode-utf-8-characters-into-mysql
http://processing.org/reference/Table.html
SQL.js: https://github.com/kripken/sql.js Web SQL storage: http://www.html5rocks.com/en/features/storage http://playground.html5rocks.com/#async_transactions
Mainly for SQLite, add method to generate db.sqlite at given path or in sketch folder: ``` mySqlDb.createDatabase("name.sqlite"); mySqlDb.createDatabase("/full/path/to/my/folder/name.sqlite"); ```