“Procedimento armazenado SQL para acesso ao front -end” Respostas de código

Procedimento armazenado SQL para acesso ao front -end

Sub spTest()
Dim qdf As DAO.QueryDef, rst As DAO.Recordset
Dim IdValueToProcess As Long

IdValueToProcess = 2  ' test data

Set qdf = CurrentDb.CreateQueryDef("")
qdf.ReturnsRecords = True
qdf.Connect = "ODBC;DSN=myDb;Trusted_Connection=Yes;"
qdf.SQL = "EXEC dbo.getContact " & IdValueToProcess
Set rst = qdf.OpenRecordset(dbOpenSnapshot)

Debug.Print rst!LastName  ' just to make sure we got a result

rst.Close
Set rst = Nothing
qdf.Close
Set qdf = Nothing
End Sub
Odd Ox

Procedimento armazenado SQL para acesso ao front -end

CREATE PROCEDURE getContact 
    -- Add the parameters for the stored procedure here
    @id int = 1
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Insert statements for procedure here
    SELECT * FROM myContacts WHERE ID=@id
END
Odd Ox

Respostas semelhantes a “Procedimento armazenado SQL para acesso ao front -end”

Perguntas semelhantes a “Procedimento armazenado SQL para acesso ao front -end”

Mais respostas relacionadas para “Procedimento armazenado SQL para acesso ao front -end” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código