Beakerboy / Beakerboy/VBA-SQL-Library
SQLSubselect — Property Get returns wrong variable
- Lenguaje dominante
- VBA
- Estrellas
- 90
- Forks
- 18
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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`.
---
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Línea de trabajo
Open src/ClassModules/SQLSubselect.cls and inspect the SelectAs property getter around lines 0–39, comparing it with the backing fields used by the class. Verify that reading SelectAs from an instance returns the stored alias value without an empty result or compile/runtime error.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- sql, visualbasic
- Área
- databases
- Tipo de issue
- Error
- Dificultad
- 1/5
- Tiempo estimado
- Menos de una hora
- Estado de actividad
- Estancado
- Claridad
- Bien especificado
- Aptitud para principiantes
- 55/100