SqlContent
Class to handle SQL content preparation and execution.
Source code in pum/sql_content.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
__init__
Initialize the SqlContent class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sql
|
str | SQL | Path
|
The SQL statement to execute or a path to a SQL file. |
required |
execute
execute(connection: Connection, *, parameters: dict | None = None, commit: bool = False) -> psycopg.Cursor
Execute a SQL statement with optional parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
connection
|
Connection
|
The database connection to execute the SQL statement. |
required |
parameters
|
dict | None
|
Parameters to bind to the SQL statement. Defaults to (). |
None
|
commit
|
bool
|
Whether to commit the transaction. Defaults to False. |
False
|
Source code in pum/sql_content.py
validate
Validate the SQL content. This is done by checking if the SQL content is not empty.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parameters
|
dict | None
|
The parameters to pass to the SQL files. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if valid, False otherwise. |