7
select *from urunler where musteri like %ir%;

测试数据:

+---musteri---+---ID--+
+-------------+-------+ 
+---İrem------+---1---+ 
+---Kadir-----+---2---+ 
+---Demir-----+---3---+ 

返回结果:

Kadir
Demir 

如果使用%İr%,那么 İrem 正在返回,但 Kadir 和 Demir 没有返回。其他土耳其字符也有同样的问题,但没有任何确切的解决方案。我正在编写单声道安卓。


    [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));

这样解决了,还要mono c#'使用库,这里我需要怎么做Android.Database.Sqlite.SQLiteDatabase

4

4 回答 4

4

根据SQLite 理解的 SQL,“LIKE 和 GLOB 运算符”部分:

默认情况下,LIKE 运算符对超出 ASCII 范围的 unicode 字符区分大小写。

这意味着“İ”不同于“i”和“I”。

于 2012-04-27T11:36:43.503 回答
3

此类问题的一种解决方案是将文本的规范化版本保存到另一列中。在文本之前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
于 2012-04-27T12:21:50.443 回答
3
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

它适用于单声道...

于 2012-04-28T08:29:36.713 回答
0

这不是最好的解决方案。但是我已经创建了一个解决方法来解决这个问题。

你可以在这里找到它:http ://codelama.com/sqlite-turkce-harf-siralamasi-sqlite-turkish-collat​​ion/

因为这个解决方案需要 UTF8CI 命名排序规则,所以我也做了一点 SQLite Admin。也可以在 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); } }

  1. 在您的 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 such collat​​ion: UTF8CI”,请在查询末尾添加“COLLATE BINARY”。像这样: select * from mytable order by mytextfield COLLATE BINARY

于 2019-03-27T13:20:13.033 回答