JDBCを介してmySQLを使用してデータベースを検索しようとしています。このステートメントを使用する場合:
SELECT * FROM tablename WHERE name='joe';
大文字と小文字を区別しない検索を実行し、「Joe」または「joe」を含む行を返します。これは私が望むものです。を実行select collation(version())
すると、「utf8_general_ci」が返されました。これは、大文字と小文字が区別されないようです。ただし、Javaアプレット内でJDBCを使用して同じクエリを実行すると、大文字と小文字が区別される検索が実行されます。これが私のquery2
関数です:
try {
Vector<Vector<String>> out = new Vector<Vector<String>>() ;
Connection con = connect() ;
Statement statement = con.createStatement() ;
System.out.println( "SQL: " + s ) ;
ResultSet rs = statement.executeQuery(s) ;
while( rs.next() )
{
String r = rs.getString(1) ; // RS is indexed from 1
Vector<String> q = new Vector<String>() ;
for( int i = 2 ; i <= tableSize ; i ++ )
{
q.add(r) ;
r = rs.getString(i) ;
}
q.add(r) ;
out.add(q) ;
}
con.close() ;
return( out ) ;
} catch (SQLException e) {
System.err.println( "SQL EXCEPTION" ) ;
System.err.println( s ) ;
e.printStackTrace();
}
そして、これが私のselect
関数ですquery2
:
public static Vector<Vector<String>> select( String table , List<String> columns , List<String> values )
{
String statement = "SELECT * from `" + table + "` WHERE " ;
for( int i = 0 ; i < columns.size(); i ++ )
{
statement += columns.get(i) + "='" + values.get(i) + "'" ;
if( i + 1 < columns.size() )
statement += " AND " ;
}
statement += " ;" ;
return query2 ( statement , tableSize(table) ) ;
}
このクエリで大文字と小文字を区別しないようにする方法はありますか?