risor-io / risor

Fast and flexible scripting for Go developers and DevOps.
https://risor.io
Apache License 2.0
611 stars 26 forks source link

Create a more generic SQLmoodule with support for other DB engines #145

Closed luisdavim closed 9 months ago

luisdavim commented 9 months ago

using:

import (
    _ "github.com/go-sql-driver/mysql"
    _ "github.com/lib/pq"
    _ "github.com/microsoft/go-mssqldb"
)

we could creat a more generig SQL module that would support PostgreSQL, MySQL and MSSQL...

myzie commented 9 months ago

Agreed.