SQLHelperFunctions — wrong Format masks in toISO
Nobody has claimed this yet.
Assessment
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Newbie friendliness
- 55/100
Research direction
Open src/Modules/SQLHelperFunctions.bas and inspect the toISO function at the top. Reproduce the issue with Print toISO(Now), then verify the output's month and minute fields use the expected masks and match ISO-style output.
Written by the indexing model from the issue text.
Description
SQLHelperFunctions: correct toISO Format masks (mm vs nn)
- Component:
src/Modules/SQLHelperFunctions.bas(top)
Problem
- Uses month/minute masks incorrectly; minutes display as month.
Snippet (actual)
Public Function toISO(dt) As String
toISO = Format(dt, "YYYY-MM-DD") & "T" & Format(dt, "HH:MM:SS")
End Function
Expected
Public Function toISO(dt) As String
toISO = Format(dt, "yyyy-mm-dd") & "T" & Format(dt, "hh:nn:ss")
End Function
Steps to Reproduce
- Print
toISO(Now)and compare minutes field.
Actual
- Minutes are incorrect.
Proposed Fix
- Use
mmfor month andnnfor minutes.
- Dominant language
- VBA
- Stars
- 90
- Forks
- 18
- PR merge metrics
- No merged PRs in 30d
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from Beakerboy/VBA-SQL-Library
-
Difficulty 1/5 Under an hour Newbie friendliness 55/100
Beakerboy/VBA-SQL-Library#68 ·
-
Difficulty 1/5 1-3 hours Newbie friendliness 52/100
Beakerboy/VBA-SQL-Library#66 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 55/100
Beakerboy/VBA-SQL-Library#65 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 55/100
Beakerboy/VBA-SQL-Library#64 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 55/100
Beakerboy/VBA-SQL-Library#63 ·
All issues in Beakerboy/VBA-SQL-Library
Similar issues
-
[Documentation Request] vLLM kv_load_failure_policy doesn't apply to load failures in L2 adapters Open
Difficulty 2/5 1-3 hours Newbie friendliness 65/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 65/100
-
DATABASE_URL=pglite:memory: creates a directory named 'memory:' instead of an in-memory database Open
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
BuilderIO/agent-native#5730 · 1 comment ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 65/100
duckdb/duckdb-wasm#2258 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
supabase/agent-skills#602 ·