package
Version:
v0.9.0
Opens a new window with list of versions in this module.
Published: Oct 12, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 14
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
mssql
Usage
source:
name: mssql
config:
connection_url: sqlserver://admin:pass123@localhost:3306/
Key |
Value |
Example |
Description |
|
identifier |
string |
my-mssql |
Instance alias, the value will be used as part of the urn component |
required |
Outputs
Field |
Sample Value |
resource.urn |
mssql::my-mssql/my_database/my_table |
resource.name |
my_table |
resource.service |
mssql |
description |
table description |
profile.total_rows |
2100 |
schema |
[]Column |
Column
Field |
Sample Value |
name |
total_price |
description |
item's total price |
data_type |
decimal |
is_nullable |
true |
length |
12,2 |
Contributing
Refer to the contribution guidelines for information on contributing to this module.
Documentation
¶
type Config struct {
ConnectionURL string `mapstructure:"connection_url" validate:"required"`
}
Config holds the connection URL for the extractor
type Extractor struct {
}
Extractor manages the extraction of data from the database
New returns a pointer to an initialized Extractor Object
Extract checks if the extractor is ready to extract
and then extract and push data into stream
Init initializes the extractor
Source Files
¶
Click to show internal directories.
Click to hide internal directories.