DropBox ConnectorThe high-performance DropBox Connector provides read/write capabilities within your application, allowing you to perform numerous DropBox operations with minimal coding or even no-coding at all. Integrate DropBox data into applications such as SSIS, SQL Server, any ODBC-compatible application, or even directly within a programming language using this connector. Download for SSIS Download for SQL Server and ODBC Documentation |
Integrate DropBox with these applications
Actions supported by DropBox Connector
DropBox Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.Parameter | Description | ||||||
---|---|---|---|---|---|---|---|
Path |
|
||||||
Recursive |
|
Parameter | Description |
---|---|
SourceFilePath |
|
Parameter | Description |
---|---|
SourcePath |
|
Parameter | Description |
---|---|
TargetFilePath |
|
SourceFilePath |
|
Parameter | Description |
---|---|
Path |
|
Parameter | Description |
---|---|
Path |
|
Parameter | Description | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Url |
|
||||||||||||||||||||||||||
Body |
|
||||||||||||||||||||||||||
IsMultiPart |
|
||||||||||||||||||||||||||
Filter |
|
||||||||||||||||||||||||||
Headers |
|
Parameter | Description |
---|---|
Url |
|
IsMultiPart |
|
Filter |
|
Headers |
|
SQL examples for DropBox Connector
Use these example DropBox SQL queries within SQL Server or any other ODBC-compatible application:
Test connection [ Read more... ]
Tests connection
SELECT *
FROM make_test
List folder #1 [ Read more... ]
Lists all files and folders within a folder
SELECT *
FROM list_folder
List folder #2 [ Read more... ]
Lists all files and folders within a folder
SELECT *
FROM list_folder
WITH (Path='/MySubfolder'
,Recursive='true')
Download file [ Read more... ]
Downloads a file
SELECT *
FROM download_file
WITH (SourceFilePath='/file-I-want-to-download.dat'
,ResponseDataFile='C:\path\I\want\to\save\my\file\to.dat'
)
Download folder as ZIP file [ Read more... ]
Downloads a folder with all files and folders within it as ZIP file
SELECT *
FROM download_folder
WITH (SourcePath='/folder-I-want-to-download'
,ResponseDataFile='C:\path\I\want\to\save\my\folder\to.zip'
)
Upload a file [ Read more... ]
Uploads a file
SELECT *
FROM upload_file
WITH (TargetFilePath='/MySubfolder/file-I-want-to-upload-to-dropbox.dat'
,DiskFilePath='C:\file\I\want\to\upload.dat'
)
Delete a file or a folder [ Read more... ]
Deletes a file or a folder
SELECT *
FROM delete
WITH (Path='/path/to/file/in/dropbox/I/want/to/delete.dat')
Create a folder [ Read more... ]
Creates a folder
SELECT *
FROM create_folder
WITH (Path='/folder/in/dropbox/I/want/to/create')