Przechowuję dane w lokalnej bazie danych przy użyciu SQLite. Mam ciąg wpisane kilka zmiennych do przechowywania. Teraz, kiedy przechowuję te zmienne łańcuchowe, są one zapisywane jako "VARCHAR" (jak na poniższym obrazku).Przechowywanie "String" jako "TEXT" zamiast "VarChar" w SQLite - WP8
Picture 1
Ale chcę, aby przechowywać te ciągi jako "tekst" typu w SQLite. (Jak na rysunku poniżej)
Picture 2
Klasa używam do przechowywania dB jest jak poniżej:
public class abc
{
[SQLite.AutoIncrement, SQLite.PrimaryKey]
public int _id { get; set; }
public string a { get; set; }
public string b { get; set; }
public string c { get; set; }
public string d { get; set; }
public string e { get; set; }
public string f { get; set; }
public string g { get; set; }
public DateTime date { get; set; }
}
każda pomoc będzie docenione.
'varchar' to' TEKST "w' SQLite', więc nie musisz się martwić! –