出于实验目的,我创建了两个spring boot微服务,都使用hsqldb。有没有一种方法可以查看hsqldb详细信息,例如spring boot创建的数据库的名称是什么,用户名,密码,每个表中都有哪些表并查询这些表。
答案 0 :(得分:0)
您可以使用HSQLDB中的内置SQL函数和INFORMATION_SCHEMA视图来检查这些属性。请参见指南http://hsqldb.org/doc/2.0/guide/
但是快速简便的方法是使用 <?php
namespace App\Form;
use App\Entity\Contact;
use App\Entity\Groupe;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class ContactType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('firstname')
->add('lastname')
->add('email')
->add('sms_no')
->add('birth_date')
->add('created_by')
->add('groupes', EntityType::class, [
'class' => Groupe::class,
'choice_label' => 'name',
])
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => Contact::class,
]);
}
}
数据库连接并检查数据库的struct node {
// whatever payload fields...
struct node *next;
};
struct node *reverse_list(struct node *list) {
struct node *last = NULL;
while (list != NULL) {
struct node *next = list->next;
list->next = last;
last = list;
list = next;
}
return last;
}
文件,该文件包含用于设置属性和创建表的SQL语句。