Skip to content

Commit 0895b8d

Browse files
FIX: Address Copilot review feedback
- Fix architecture detection reference: ddbc_bindings.py not __init__.py - Fix stored procedure syntax: use positional params without named param mixing
1 parent d89b394 commit 0895b8d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ The CI system tests:
229229

230230
## Architecture Detection and Loading
231231

232-
The `__init__.py` module implements sophisticated architecture detection:
232+
The `ddbc_bindings.py` module implements sophisticated architecture detection:
233233
- **Windows**: Normalizes `win64/amd64/x64``x64`, `win32/x86``x86`, `arm64``arm64`
234234
- **macOS**: Runtime architecture detection, always loads from universal2 binary
235235
- **Linux**: Maps `x64/amd64``x86_64`, `arm64/aarch64``arm64`

llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ for column in cursor.description:
178178

179179
```python
180180
# Call a stored procedure
181-
cursor.execute("EXEC GetUserById @UserId = ?", (user_id,))
181+
cursor.execute("EXEC GetUserById ?", (user_id,))
182182
result = cursor.fetchone()
183183

184184
# Stored procedure with output

0 commit comments

Comments
 (0)