Beakerboy / Beakerboy/VBA-SQL-Library
SQLSubselect — Property Get returns wrong variable
Open
- Dominant language
- VBA
- Stars
- 90
- Forks
- 18
- PR merge metrics
- No merged PRs in 30d
Description
SQLSubselect: SelectAs getter returns wrong variable
- Component: `src/ClassModules/SQLSubselect.cls` (around 0–39)
### Problem
- Getter returns an undefined identifier instead of the backing field.
### Snippet (actual)
```vb
Property Get SelectAs() As String
SelectAs = aAs
End Property
```
### Expected
```vb
Property Get SelectAs() As String
SelectAs = sAs
End Property
```
### Steps to Reproduce
1) Read `SelectAs` from an instance.
### Actual
- Returns empty/undefined; potential compile/runtime error.
### Proposed Fix
- Return `sAs`.
---
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.