SQLite Forum

no such table: generate_series
Login
```
D:\TEMP>sqlite3
SQLite version 3.33.0 2020-08-14 13:23:32
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> select * from generate_series(1,1,10);
Error: no such table: generate_series
sqlite>
```

"https://sqlite.org/series.html":
The generate_series(START,END,STEP) table-valued function is a loadable extension included in the SQLite source tree, and compiled into the command-line shell.

I have (when looking at the download page) the current version 3.33 


What am i missing?