If you need millions of lines and there is shell / bash, this might be good enough:
echo -e '.import "/dev/stdin" mytable\n'; sleep 0.5 ; for i in {1..10000000}; do echo $RANDOM; done) | sqlite3 my.db
The wait phase is critical to prevent sqlite from being read from the first numbers as SQL commands due to buffering. Ymmv
source share