SQL Server
SQL Server
Upload to an SFTP Server Using an Open Handle
See more SFTP Examples
Demonstrates the Chilkat SFtp.UploadFile method, which streams a local file to a remote file identified by an open handle. The first argument is the handle (from OpenFile) and the second is the local file path. Close the handle with CloseHandle when done.
Note: This example uses relative local paths, which are resolved against the application's current working directory. Absolute local paths may also be used. Supply the paths appropriate to your own environment.
Background: This is the lower-level upload, useful when you need control that
UploadFileByName does not offer — for example choosing the exact create disposition (create-new versus truncate versus append) via OpenFile, or reusing a handle across operations. The transfer itself is streamed and unbounded by memory. The trade-off is that you own the handle's lifetime and must close it explicitly.Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- Demonstrates the SFtp.UploadFile method, which streams a local file to a remote file that is
-- identified by an open handle. The 1st argument is the handle and the 2nd is the local file
-- path.
DECLARE @sftp int
EXEC @hr = sp_OACreate 'Chilkat.SFtp', @sftp OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Connect, authenticate, and initialize the SFTP subsystem.
DECLARE @port int
SELECT @port = 22
EXEC sp_OAMethod @sftp, 'Connect', @success OUT, 'sftp.example.com', @port
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
-- Normally you would not hard-code the password in source. You should instead obtain it
-- from an interactive prompt, environment variable, or a secrets vault.
DECLARE @password nvarchar(4000)
SELECT @password = 'mySshPassword'
EXEC sp_OAMethod @sftp, 'AuthenticatePw', @success OUT, 'mySshLogin', @password
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
EXEC sp_OAMethod @sftp, 'InitializeSftp', @success OUT
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
-- Open (creating/truncating) the remote file for writing. OpenFile returns a handle string.
DECLARE @handle nvarchar(4000)
EXEC sp_OAMethod @sftp, 'OpenFile', @handle OUT, 'subdir/report.pdf', 'writeOnly', 'createTruncate'
EXEC sp_OAGetProperty @sftp, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
-- Stream the local file to the open remote handle. The transfer is not limited by memory.
EXEC sp_OAMethod @sftp, 'UploadFile', @success OUT, @handle, 'qa_data/report.pdf'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
-- Close the remote handle when the upload is complete.
EXEC sp_OAMethod @sftp, 'CloseHandle', @success OUT, @handle
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @sftp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @sftp
RETURN
END
PRINT 'Uploaded.'
EXEC sp_OAMethod @sftp, 'Disconnect', NULL
EXEC @hr = sp_OADestroy @sftp
END
GO