1. Using MySQL
- Posted by euphoric (admin) Apr 18, 2022
- 1280 views
If I wanted to use MySQL with Euphoria, could I? (I mean "easily?")
The search of this forum doesn't really have any obvious helpful links on the several pages.
PCAN exists, but its MySQL libs are old. (I'll give 'em a try if I have to.)
Is there an up-to-date library?
2. Re: Using MySQL
- Posted by ChrisB (moderator) Apr 19, 2022
- 1203 views
Hi
This is a perfect example of the opportunity to update these old Eu programs to Eu4.1 / Phix.
Good luck
Chris
3. Re: Using MySQL
- Posted by ghaberek (admin) Apr 19, 2022
- 1216 views
Is there an up-to-date library?
Well, it's not complete but it's been in EuMVC for a while now. The standard functions are there but I still need to wrap the prepared statement functions.
https://github.com/OpenEuphoria/euphoria-mvc/blob/master/include/db/mysql.e
You can get the "Connector/C" library from either MySQL or MariaDB.
-Greg
4. Re: Using MySQL
- Posted by euphoric (admin) Apr 19, 2022
- 1219 views
Is there an up-to-date library?
Well, it's not complete but it's been in EuMVC for a while now. The standard functions are there but I still need to wrap the prepared statement functions.
https://github.com/OpenEuphoria/euphoria-mvc/blob/master/include/db/mysql.e
You can get the "Connector/C" library from either MySQL or MariaDB.
Thanks, Greg! I'm going to try using the SQLite library first, then maybe transition over to MySQL.