123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- SuperStrict
- Framework Database.SQLite
- Import BRL.filesystem
- Import BRL.RamStream
- Import BRL.JPGLoader
- Import BRL.StandardIO
- ' delete the db file if it already exists
- DeleteFile("maxtest.db")
- ' create and open a new SQLite database
- Local db:TDBConnection = LoadDatabase("SQLITE", "maxtest.db")
- If Not db Then
- Print "Didn't work..."
- End
- End If
- If db.hasError() Then
- errorAndClose(db)
- End If
- Local names:String[][] = [ ..
- [ "Alfred", "Aho", "alfred-aho.jpg" ], ..
- [ "Brian", "Kernighan", "brian-kernighan.jpg" ], ..
- [ "Peter", "Weinberger", "pjw.jpg" ] ]
- If db.isOpen() Then
- ' Create a new table
- Local s:String = "CREATE TABLE person (id integer primary key AUTOINCREMENT, " + ..
- " forename varchar(30)," + ..
- " surname varchar(30), stamp datetime, image blob )"
- db.executeQuery(s)
- If db.hasError() Then
- errorAndClose(db)
- End If
- ' get a new query object
- Local query:TDatabaseQuery = TDatabaseQuery.Create(db)
- ' prepare the insert statement
- ' by preparing it once, the database can reuse it on succesive inserts which is more efficient.
- query.prepare("INSERT INTO person values (NULL, ?, ?, ?, ?)")
-
- If db.hasError() Then
- errorAndClose(db)
- End If
- ' iterate round the array inserting new entries
- For Local i:Int = 0 Until 3
- query.bindValue(0, TDBString.Set(names[i][0]))
- query.bindValue(1, TDBString.Set(names[i][1]))
- query.bindValue(2, TDBDateTime.Set(2007, 4 + i, 30, 10, 4, 16))
- ' load some data (raw jpg data)
- Local b:Byte[] = LoadByteArray("images/" + names[i][2])
- ' bind it (copying the data)
- query.bindValue(3, TDBBlob.Set(b, b.length))
- query.execute()
-
- If db.hasError() Then
- errorAndClose(db)
- End If
- Next
-
- query = db.executeQuery("SELECT * from person")
- If db.hasError() Then
- errorAndClose(db)
- End If
- While query.nextRow()
- Local record:TQueryRecord = query.rowRecord()
-
- Print (record.GetInt(0) + ". Name = " + record.GetString(1) + " " + record.GetString(2))
- Print TDBDateTime.SetFromString(record.getString(3)).GetString()
-
- ' get the blob data
- Local b:TDBBlob = TDBBlob(record.value(4))
- ' create a pixmap (from the raw jpg data)
- Local pix:TPixmap = LoadPixmap(CreateRamStream(b.getBlob(), b.size(), True, False))
- If pix Then
- Print "Dimension = " + pix.width + ", " + pix.height
- End If
- Wend
-
-
- db.close()
-
- End If
- Function errorAndClose(db:TDBConnection)
- Print db.error().toString()
- db.close()
- End
- End Function
|