-3

こんにちは、事前に助けてくれてありがとう、私は自分のウェブサイトを趣味として構築しています。自分のコンプに座って書いたJavaアプリを持っています。それは特定のテーブルを更新し、最終結果はユーザーに表示されるテーブルです。今、phpmyadmin を使用して手動でテーブルを更新します。

問題は、テーブルを Web サイト DB にインポートするための接続をどのように設定するかです。

質問する前にグーグルで検索しましたが、関連するものは見つかりませんでした....

4

1 に答える 1

0

There are many ways to do what you want (dozens in fact). One way, that I personally use is through PHP and the $mysqli class.

Read more on mysqli here

You will need to setup a database conection, and from here you would use this connection to query your database by building SQL queries and using the $mysqli class to send them to the database.

于 2013-04-16T14:46:07.467 に答える