Mysql
 sql >> Datenbank >  >> RDS >> Mysql

F# Connect to Online MySQL DB führt Abfrage aus

Sie sollten den .NET-Treiber für MySQL installieren. Installieren Sie dann den SQLprovider. Es gibt Beispiele für MySQL in der Dokumentation. Sie würden sich mit der Datenbank verbinden und sie wie folgt abfragen:

type sql = SqlDataProvider<
                dbVendor,
                connString,
                ResolutionPath = resPath,
                IndividualsAmount = indivAmount,
                UseOptionTypes = useOptTypes,
                Owner = "HR"
            >
let ctx = sql.GetDataContext()

let employees = 
    ctx.Hr.Employees 
    |> Seq.map (fun e -> e.ColumnValues |> Seq.toList)
    |> Seq.toList

connstring wird etwa so aussehen:

[<Literal>]
let connString  = "Server=localhost;Database=HR;User=root;Password=password"

Sie sollten auch https://msdn.microsoft.com/visualfsharpdocs/conceptual/walkthrough-accessing-a-sql-database-by-using-type-providers-%5bfsharp%5d