# Background - Connection objects are used from Exasol to store credentials or config for UDFs - We need to often supply credentials of the bucketfs and locations in the bucketfs to the UDFs - It would be good to have a function which generates a connection object create statement from a BucketFSLocation - This connection object then can be used inside a UDF to create BucketFSLocation object via the BucketFSFactory - Process: BucketFSLocation -> Connection Object Create Statement -> Connection Object in UDF -> BucketFSFactory in UDF -> BucketFSLocation in UDF # Acceptance Criteria - BucketFSLocation can create Connection object create statement - BucketFSFactory can create BucketFSLocation from this connection object
Background
Acceptance Criteria