我有projects表和items表。房租表是中间的雄辩。它显示了哪个项目租用或使用了什么项目。如何检索项目和使用的所有项,而不一定在结果中涉及租金。
模式:
项目
public function rents()
{
return $this->hasMany('App\Rent');
}
项目
public function rents()
{
return $this->hasMany('App\Rent');
}
房租
public function project()
{
return
我正在用Netbeans做一个Java项目。我使用phpmyadmin中的xampp服务器来提供数据库服务。但每次运行项目时,我都必须启动xampp服务器。而且它只在我的笔记本电脑上可用。我如何对其进行配置,使其在我运行Java应用程序的任何位置(任何其他计算机)都能自动连接数据库并检索数据。在Java代码中,连接是这样建立的:
Connection con = null;
try {
con = DriverManager.getConnection("jdbc:mysql://localhost/food_waste"