' SPEICHERN
Dim SB As StringBuilder
SB.Initialize
For i = 0 To RateList.Size - 1
SB.Append(RateList.Get(i) & ",")
Next
Dim BT() As Byte
Dim BC As ByteConverter
BT = BC.StringToBytes(SB, "UTF8")
GlobalCodes.TSQL.ExecNonQuery2("INSERT INTO Rates VALUES(NULL, '" & RecordID & "', ?)", Array As Object(BT))
' LESEN
Dim BT() As Byte
BT = Cursor1.GetBlob("RateList")
Dim BC As ByteConverter
Dim ST As String = BC.StringFromBytes(BT, "UTF8")
Dim Delimiter As String = ","
Dim sArray() As String = Regex.Split(Delimiter, ST)
RecordViewList.AddAll(sArray)