ADO.NET Provider for Google BigQuery

Build 26.0.9655

UploadObject

Uploads objects in a single operation. Use the SimpleUploadLimit connection property to adjust the threshold in bytes in order to perform a multipart upload.

Stored Procedure-Specific Information

To upload a single file, enter:
    EXEC UploadObject LocalFilePath='C:/my_folder/my_file.txt', RemotePath='gs://cdata_test_bucket/my_file.txt'
To upload all files in a directory, enter:
    EXEC UploadObject LocalFilePath='C:/my_folder/', RemotePath='gs://cdata_test_bucket/'

Input

Name Type Description
LocalFilePath String The path to the file that will be uploaded in the bucket, such as 'C:/temp/my_file.txt'. If this is a path to a folder, then all the files in the folder will be uploaded in the bucket.
RemotePath String Path to where the object will be uploaded, such as 'gs://my_bucket/my_file.txt'.

Result Set Columns

Name Type Description
Object String Object name for the object that is uploaded.
Success String Indicator if the stored procedure was successful or not.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655