我正在尝试通过blob列查询SQLite表,这是一个SHA256哈希值。
CREATE TABLE Articles (HASH BLOB(32) PRIMARY KEY, Article TEXT)
这样的查询不会返回任何内容:
SELECT * FROM Articles WHERE HASH = ?
-- the parameter is bound using sqlite3_bind_blob, not to use literals
我在C#中创建了这个小程序,它创建了表并插入了一行来尝试。
using System;
using System.Linq;
using System.Data;
using System.Data.SQLite;
using System.IO;
using System.Security.Cryptography;
// using lib;
public class Program {
static int Main(string[] args)
{
// Console.WriteLine(sqlite3.LibVersion);
byte[] qHash;
string qArticle = "Lorem ipsum dolor sit amet";
using (var hashAlgorithm = new SHA256CryptoServiceProvider ()) {
byte[] bytes = System.Text.Encoding.UTF8.GetBytes(qArticle);
qHash = hashAlgorithm.ComputeHash(bytes);
}
var con = new SQLiteConnection ("Data Source=test.sqlite");
con.Open();
try {
var create = new SQLiteCommand ("CREATE TABLE Articles (HASH BLOB(32) PRIMARY KEY, Article TEXT)", con);
create.ExecuteNonQuery();
var insert = new SQLiteCommand ("INSERT INTO Articles (HASH, Article) VALUES (?, ?); SELECT last_insert_rowid();", con);
var insertParam0 = new SQLiteParameter(DbType.Binary);
insertParam0.Value = qHash;
insert.Parameters.Add(insertParam0);
var insertParam1 = new SQLiteParameter(DbType.String);
insertParam1.Value = qArticle;
insert.Parameters.Add(insertParam1);
object insert_result = insert.ExecuteScalar();
var insert_rowid = (long)insert_result;
} catch { } // silently fail if exists usually
var query = new SQLiteCommand ("SELECT * FROM Articles WHERE HASH = @hash", con);
var param = new SQLiteParameter ("@hash", DbType.Binary);
param.Value = qHash;
query.Parameters.Add(param);
using (SQLiteDataReader reader = query.ExecuteReader()) {
while (reader.NextResult()) {
var hash = new byte[32];
long hashLen = reader.GetBytes(0, 0, hash, 0, 32);
string article = reader.GetString(1);
Console.WriteLine("HASH: {0}; Article: {1}",
hash == null ? null : BitConverter.ToString(hash).Replace("-", ""),
article
);
}
}
con.Close();
return 0;
}
}
但是reader
没有结果。查询BLOB列是否完全不受支持?
还有别的事情困扰我吗?
答案 0 :(得分:1)
这里的问题通过发现<{p>}中使用了Read
来解决
while (reader.Read()) { }
循环,而NextResult
用于
do { } while (reader.NextResult());
环。
然而,最初的问题是,在我的实际项目中,我使用BLOB Hex Editor中的SQLiteStudio(SQLite 3.7.16.1)创建了数据库;混淆了System.Data.SQLite
库(使用SQLite 3.8.2)。
现在通过使用程序本身创建数据库也解决了初始问题
(byte[])reader[0]
处理过并且还返回了正确的字节,但是在SELECT中没有限定,既没有参数也没有文字所以说,不要混用SQLite版本,甚至不要快速尝试。我努力了,我甚至为sqlite3_ *创建了一个带有DllImport绑定的UnmanagedLibrary,只是为了发现这不是问题。