摘要:
eclipse使用过程中发现汉字太小,几乎不可辨识。 更改办法:eclipse界面依次选择“window”–“preference”–“general”–“appearance”–“color and font”–“basic”–“text font”将字体从原来的默认改为“courier new” 阅读全文
摘要:
解决方法:复写toString方法 @Override public String toString() { return this.getBookTypeName(); } 将对象的toString方法换成了书名字符串 阅读全文
摘要:
sql语句格式: · 添加外键约束:alter table 从表 add constraint 外键(形如:FK_从表_主表) foreign key (从表外键字段) references 主表(主键字段); CREATE TABLE t_book( id int primary key auto 阅读全文