William Drago wrote: > I am trying to determine the number of bytes in a blob. According to the help > file under SQLiteDataReader.GetBytes Method in the Remarks section: > > "To determine the number of bytes in the column, pass a null value for the > buffer. The total length will be returned." > > I'm working in VEE and VEE doesn't have a null keyword, so I tried > System.DBNull.Value and I get an error (signatures don't match).
If VEE (whatever that is) does not allow you to specify something that ends up as a null reference, the you cannot use this mechanism. > So, are there any other ways to get the number of bytes in a blob? SELECT length(MyLittleBlob) FROM ... Regards, Clemens

