Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
winform アプリケーションを使用してクエリを作成し、Oracle データベースにクエリを実行する方法を探していますが、データの大文字と小文字は無視します。Oracle自体で何も変更せずにこれを行うことは可能ですか?
すべて大文字または小文字にすることができます。
SELECT Columns From Table WHERE UPPER(ColName) = :UpperValue
次にToUpper、値で使用します。
ToUpper
yourOracleCommand.Parameters.AddWithValue("UpperValue", value.ToUpper())