SQLite中的土耳其字符在使用LIKE表达式时
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLite中的土耳其字符在使用LIKE表达式时相关的知识,希望对你有一定的参考价值。
select *from urunler where musteri like %ir%;
测试数据:
+---musteri---+---ID--+
+-------------+-------+
+---İrem------+---1---+
+---Kadir-----+---2---+
+---Demir-----+---3---+
返回结果:
Kadir
Demir
如果使用%İr%
然后İrem返回,但卡迪尔和Demir没有回来。其他土耳其人的角色也有同样的问题,但没有任何确切的解决方案。我正在编程单声道android。
[SQLiteFunction(Name = "TOUPPER", Arguments = 1, FuncType = FunctionType.Scalar)]
public class TOUPPER: SQLiteFunction
public override object Invoke(object[] args)
return args[0].ToString().ToUpper();
[SQLiteFunction(Name = "COLLATION_CASE_INSENSITIVE", FuncType = FunctionType.Collation)]
class CollationCaseInsensitive : SQLiteFunction
public override int Compare(string param1, string param2)
return String.Compare(param1, param2, true);
TOUPPER.RegisterFunction(typeof(TOUPPER));
用这种方式解决了,还单声道c#'使用了库,这里是我需要做的Android.Database.Sqlite.SQLiteDatabase
针对此类问题的一种解决方案是将文本的规范化版本保存到另一列中。在INSERT
文本之前,用一些常见字符替换所有特殊字符,并将两个版本放在数据库中。
你的桌子就像那样
ID musteri musteri_normalized
--- ---------- ------------------
1 İrem Irem
2 Kadir Kadir
3 yapılcağ yapilcag
现在,您可以在规范化列上使用LIKE
比较,并仍然从数据库返回实际文本。
SELECT musteri FROM table WHERE musteri_normalized LIKE '%ir%';
-> İrem, Kadir
来自SQL As Understood By SQLite,“LIKE和GLOB运营商”部分:
对于超出ASCII范围的unicode字符,LIKE运算符默认区分大小写。
这意味着“İ”与“i”和“I”不同。
public class Sqlite_DB
private SqliteConnection CON;
public SqliteCommand COM;
string dbName = System.IO.Path.Combine(@"sdcard", @"testDB.db3");
public Sqlite_DB()
TOUPPER.RegisterFunction(typeof(TOUPPER));
CollationCaseInsensitive.RegisterFunction(typeof(CollationCaseInsensitive));
CON=new SqliteConnection(String.Format("Data Source=0;Pooling=1", dbName, false));
COM=new SqliteCommand(CON);
public void close()
COM.Clone();
CON.Clone();
public void open()
CON.Open();
#region TOUPPER
[Mono.Data.Sqlite.SqliteFunction(Name = "TOUPPER", Arguments = 1, FuncType = FunctionType.Scalar)]
public class TOUPPER: Mono.Data.Sqlite.SqliteFunction
public override object Invoke(object[] args)//characters for the growth of
return args[0].ToString().ToUpper();
[Mono.Data.Sqlite.SqliteFunction(Name = "COLLATION_CASE_INSENSITIVE", FuncType = FunctionType.Collation)]
class CollationCaseInsensitive : Mono.Data.Sqlite.SqliteFunction
public override int Compare(string param1, string param2) //According to Turkish character sorting to patch
return String.Compare(param1, param2, true);
#endregion
public class TEST_X
string strValue="ir";//test
public void MUSTERI()
string srg="select * from "+Cari_._
+"where TOUPPER(musteri) like '%"+strValue.toUpper()+"%';";
try
Sqlite_DB d=new Sqlite_DB();
d.open();
d.COM.CommandText=srg;
SqliteDataReader dr=d.COM.ExecuteReader();
while (dr.Read())
Android.Util.Log.Error(">>>>",dr[0].ToString()+"<<<");
d.close();
catch (Exception ex)
Android.Util.Log.Error(">>>>",ex+"<<<");
ID musteri
--- ----------
1 İrem
2 Kadir
3 Demir
returning result:
-İrem
-Kadir
-Demir
它适用于单声道......
这不是最好的解决方案。但我已经创建了一个解决此问题的解决方法。
你可以在这里找到它:http://codelama.com/sqlite-turkce-harf-siralamasi-sqlite-turkish-collation/
由于这个解决方案需要UTF8CI命名整理,我也做了一点SQLite Admin。它也可以找到here on github
我尝试使用icu,从源代码编译等。这对我来说是最简单的解决方案。我希望它有所帮助。
使其工作的步骤:1。在您的命名空间中的任何位置添加此代码:
[SQLiteFunction(FuncType = FunctionType.Collation, Name = "UTF8CI")]
public class SQLiteCaseInsensitiveCollation : SQLiteFunction
private static readonly System.Globalization.CultureInfo _cultureInfo = System.Globalization.CultureInfo.CreateSpecificCulture("tr-TR");
public override int Compare(string x, string y)
return string.Compare(x, y, _cultureInfo, System.Globalization.CompareOptions.IgnoreCase);
- 在program.cs中,在打开第一个表单之前插入此代码:
System.Data.SQLite.SQLiteFunction.RegisterFunction(typeof(SQLiteCaseInsensitiveCollation));
现在,您将获得土耳其语整理。要使其工作,您必须在文本列定义后添加“COLLATE UTF8CI”。像这样:
CREATE TABLE
maytable
(
id
INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
mytextfield1
TEXT NULL COLLATE UTF8CI,
mytextfield2
TEXT)
如果您收到“No collation:UTF8CI”,请在查询结尾添加“COLLATE BINARY”。像这样:
select * from mytable order by mytextfield COLLATE BINARY
以上是关于SQLite中的土耳其字符在使用LIKE表达式时的主要内容,如果未能解决你的问题,请参考以下文章