需要有关在 Small Basic 上创建数据库的帮助

Need Help on creating a Database on Small Basic

只需要关于在何处启动小型基础数据库的一般说明。我看到一个人这样做,但他的指示很混乱。我已经编程一个月了,所以我是新手。有人可以或多或少地告诉我从哪里开始吗?

你可以制作一个数组,然后制作一个程序,它使用

写入文本文件
FilePath = "C:\temp\TempSubdirectory\my.txt"
TextWindow.WriteLine("Write Content = " + 
File.WriteLine(FilePath, 1, "Shakespeare was a great writer."))
TextWindow.WriteLine("Append Content = " + 
 File.AppendContents(FilePath, "He wrote many plays."))
TextWindow.WriteLine("Read Content = " + 
 File.ReadContents(FilePath))