| 60 | * This interface allows passing execution-specific options to connectors |
| 61 | */ |
| 62 | export interface ExecuteOptions { |
| 63 | /** Maximum number of rows to return (applied via database-native LIMIT) */ |
| 64 | maxRows?: number; |
| 65 | /** |
| 66 | * Restrict to read-only SQL operations (application-level enforcement) |
| 67 | * Validates SQL keywords before execution to prevent write operations. |
| 68 | * Note: SDK-level readonly enforcement is set via ConnectorConfig.readonly |
| 69 | */ |
| 70 | readonly?: boolean; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Configuration options for database connections |
nothing calls this directly
no outgoing calls
no test coverage detected