PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Chiamare una stored procedure in Postgresql tramite F# e Npgsql

So che questa domanda è stata posta molto tempo fa, ma ho pensato di aggiungere un riferimento a SqlProvider . Di recente è stato aggiunto il supporto per PostgreSQL e include il supporto per SPROCS.

 [<Literal>]
 let connStr = "User ID=postgres;Password=password;Host=POSTGRESQL;Port=9090;Database=hr;"

 [<Literal>]
 let resolutionFolder = @"D:\Downloads\Npgsql-2.1.3-net40\"

 type HR = SqlDataProvider<ConnectionString=connStr,DatabaseVendor=Common.DatabaseProviderTypes.POSTGRESQL, ResolutionPath = resolutionFolder>
 let ctx = HR.GetDataContext()

 ctx.Procedures.ADD_JOB_HISTORY(100, DateTime(1993, 1, 13), DateTime(1998, 7, 24), "IT_PROG", 60)


 //Support for sprocs that return ref cursors
 let employees =
     [
       for e in ctx.Functions.GET_EMPLOYEES().ReturnValue do
           yield e
     ]

Dove la cartella di risoluzione punta al percorso degli assembly NPGSQL .NET.