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

XMLデータを読み取ってデータベースに保存する方法

    クエリを作成するには、PreparedStatement を使用する必要があります。 。

    使用例:

    String query = "INSERT INTO some_table (col1,col2,col3) values (?,?,?)
    PreparedStatement stmt = null;
    stmt = con.prepareStatement(query);
    //now use the values from the xml and bind them to the statement
    stmt.setString(someStringValue);
    stmt.setInt(someIntValue);
    ...
    stmt.execute();
    



    1. WordPressクエリ:一致した行の順序順数?

    2. 時刻を含む日付の差分

    3. 大文字の列名でRailsを使用するにはどうすればよいですか?

    4. dockermysqlコンテナへのログインを有効にする