6 references to StringInfoTableName
Microsoft.CodeAnalysis.Workspaces (6)
Storage\SQLite\v2\SQLitePersistentStorage.cs (6)
63
private readonly string _insert_into_string_table_values_0 = $"insert into {
StringInfoTableName
}({DataColumnName}) values (?)";
64
private readonly string _select_star_from_string_table_where_0_limit_one = $"select * from {
StringInfoTableName
} where ({DataColumnName} = ?) limit 1";
65
private readonly string _select_star_from_string_table = $"select * from {
StringInfoTableName
}";
209
$@"create table if not exists {
StringInfoTableName
}(
216
$@"create unique index if not exists ""{
StringInfoTableName
}_{DataColumnName}"" on {
StringInfoTableName
}(""{DataColumnName}"")");