sql >> データベース >  >> RDS >> Mysql

javamysqlcount行数

    以下のコードを試してください

     public int num() throws Exception {
     try {
     // This will load the MySQL driver, each DB has its own driver
     Class.forName("com.mysql.jdbc.Driver");
     // Setup the connection with the DB
     connect = DriverManager.getConnection("jdbc:mysql://localhost/testdb?"
     + "user=root&password=");
    
     // Statements allow to issue SQL queries to the database
     statement = connect.createStatement();
     resultSet = statement.executeQuery("select count(*) from testdb.emg");
    
     while (resultSet.next()) {
     return resultSet.getInt(1);
     }
    } catch (Exception e) {
    }
    

    以下はエラーでした

    1. public void num() throws Exception {

      する必要があります

      public int num() throws Exception {

    2. 合計行数をカウントするには、クエリselect count(*) from testdb.emgを使用する必要があります

    問題が発生した場合はお知らせください。



    1. NULLを許可するようにMySQL列を変更するにはどうすればよいですか?

    2. SSISのマージ結合変換とルックアップ変換の違いは何ですか?

    3. MySQLで列の名前を変更します

    4. mysql_queryがfalseを返す場合