Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Accessing Table Function from Excel
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2014
OS:
Windows 10
Network:
Windows Server 2012 R2
Divers
Thread ID:
01640618
Message ID:
01640623
Vues:
41
You're right, I used a slightly different approach, but yours would have worked as well. (yeah, I'm now the expert :) ).
Public Function Extract(fromDate As Date, toDate As Date, sp As String) As Recordset
    Dim sql As String
    sql = "select * from sp_aankopen('" & sqlformatDate(fromDate) & "','" & sqlformatDate(toDate) & "')"
    Debug.Print sql
    Set rs = New ADODB.Recordset
    rs.Open sql, conn, adOpenDynamic, adLockOptimistic, -1
    Set Extract = rs
    Set rs = Nothing
End Function
I see now what I did wrong. :)

Many thanks!

If things have the tendency to go your way, do not worry. It won't last. Jules Renard.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform