-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for other DB's like SQL Server, MySQL, etc? #4
Comments
I cannot see me writing code to support MS SQL Server (I have no access to a server etc) but I may very well try and support MySQL as well. The code that interfaces with the database is a really small amount and quite isolated and I'm planning to build a plugin like system (but have done no thinking). I wonder if I break it apart, write a MySQL plugin and some documentation about how to create a plugin would you be interested in writing a MS SQL plugin? |
If you can make it a well designed interface it should be pretty easy to plug in SQL Server. SQL Server does have an express edition that is free to use (even runs on linux or docker). It's very similar to MySQL in syntax. Thanks! |
Here's the SQL Server Docker image: https://hub.docker.com/_/microsoft-mssql-server This is how to launch an SQL Server Developer Edition instance:
|
On my way to work today I started working on separating out the querying / streaming results parts of the code. Doesn't look like a big job. It'd be great to know support for MS SQL Server vs MySQL vs Something Else. Do both of you use MS SQL Server and have you tried eSQLate on PostgreSQL to see if it would be the right thing for you to use if it supported MS SQL Server? |
I've added support for MySQL to Esqlate Server in a branch ( https://github.com/forbesmyester/esqlate-server/tree/feature/multiple-database-support#mysql-support ). If you wish to use the branch it is relatively easy but you will need to either set up the projects separately using environmental variables or twiddle with the docker-compose file. Happy to support anyone getting this working until I update this repository to support it. |
MySQL support has officially been released. I will eventually get to SQL Server but it might be a really long time. Contributions are very welcome (and will get credited) Thanks |
This looks pretty epic and has quite a few use cases. For us specifically - we have a massive legacy SQL Server database. Any thoughts on adding support for that?
The text was updated successfully, but these errors were encountered: