Beakerboy / Beakerboy/VBA-SQL-Library

SQLSubselect — Property Get returns wrong variable

Open
#65 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.