smallbasic

Need Help on creating a Database on Small Basic


Just need general directions on where to start a database on small basic. i saw a guy do it but his instructions were quite confusing. i've been programming for a month now, so I'm new. can someone give me more or less an idea on where to start?


Solution

  • you could make an array and then make a do a program where it writes to a text file using

    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))