SQLiteCommand fdCase = new SQLiteCommand("SELECT * FROM record", destination);
SQLiteDataReader readerCase = fdCase.ExecuteReader();
if (readerCase.HasRows)
{
int icalc = 1;
while (readerCase.Read())
{
byte[] byteCase = (Byte[])readerCase["DATA"];
by this way you can read binary data
SQLiteDataReader readerCase = fdCase.ExecuteReader();
if (readerCase.HasRows)
{
int icalc = 1;
while (readerCase.Read())
{
byte[] byteCase = (Byte[])readerCase["DATA"];
by this way you can read binary data
No comments:
Post a Comment