17 references to Keywords
System.Data.Odbc (17)
System\Data\Odbc\OdbcConnectionStringbuilder.cs (17)
28private static readonly Dictionary<string, Keywords> s_keywords = new Dictionary<string, Keywords>(2, StringComparer.OrdinalIgnoreCase) 30{ DbConnectionStringKeywords.Driver, Keywords.Driver }, 31{ DbConnectionStringKeywords.Dsn, Keywords.Dsn } 57Keywords index; 72Keywords index; 77case Keywords.Driver: Driver = ConvertToString(value); break; 78case Keywords.Dsn: Dsn = ConvertToString(value); break; 181Reset((Keywords)i); 197private string GetAt(Keywords index) 201case Keywords.Driver: return Driver; 202case Keywords.Dsn: return Dsn; 214Keywords index; 228private void Reset(Keywords index) 232case Keywords.Driver: 235case Keywords.Dsn: 253Keywords index;