Return Value
A new SQLiteBlob object.
public void CloneSQLiteBlob() { SQLiteBlob myBlob = new SQLiteBlob(); myBlob.WriteByte(14); SQLiteBlob myBlob2 = (SQLiteBlob)myBlob.Clone(); myBlob2.Seek(0,System.IO.SeekOrigin.Begin); Console.WriteLine(myBlob2.ReadByte()); }
Public Sub CloneSQLiteBlob() Dim myBlob As SQLiteBlob = New SQLiteBlob myBlob.WriteByte(14) Dim myBlob2 As SQLiteBlob = CType(myBlob.Clone(), SQLiteBlob) myBlob2.Seek(0, System.IO.SeekOrigin.Begin) Console.WriteLine(myBlob2.ReadByte()) End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2