Snowflake
SnowflakeReader #
Bases: BaseReader
Initializes a new instance of the SnowflakeReader.
This class establishes a connection to Snowflake using SQLAlchemy, executes query and concatenates each row into Document used by LlamaIndex.
Attributes:
Name | Type | Description |
---|---|---|
engine |
Optional[Engine]
|
SQLAlchemy Engine object of the database connection. |
account |
Optional[str]
|
Snowflake account identifier. |
user |
Optional[str]
|
Snowflake account username. |
password |
Optional[str]
|
Password for the Snowflake account. |
database |
Optional[str]
|
Snowflake database name. |
schema |
Optional[str]
|
Snowflake schema name. |
warehouse |
Optional[str]
|
Snowflake warehouse name. |
proxy |
Optional[str]
|
Proxy setting for the connection. |
Source code in llama-index-integrations/readers/llama-index-readers-snowflake/llama_index/readers/snowflake/base.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
execute_query #
execute_query(query_string: str) -> List[Any]
Executes a SQL query and returns the fetched results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query_string
|
str
|
The SQL query to be executed. |
required |
Returns:
Type | Description |
---|---|
List[Any]
|
List[Any]: The fetched results from the query. |
Source code in llama-index-integrations/readers/llama-index-readers-snowflake/llama_index/readers/snowflake/base.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
load_data #
load_data(query: str) -> List[Document]
Query and load data from the Database, returning a list of Documents.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
Query parameter to filter tables and rows. |
required |
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: A list of Document objects. |
Source code in llama-index-integrations/readers/llama-index-readers-snowflake/llama_index/readers/snowflake/base.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|