9月3日总结

好友下线将消息存入数据库

用javafx将消息条数写在各好友旁边

//可以使用setClip()方法和Circle设置标签的形状
Circle cir=new Circle();
//用于调节标签内文字的位置
la.setPadding(new Insets(0,0,0,6));
la.setClip(cir);
//用于调整某一各控件在HBox内的位置
HBox.setMargin(la, new Insets(40, 0, 30, 180));
//设置某一控件是否可见
setVisible(false);
//将组件放入HBox
hBox.getChildren().addAll(label,la);

解决数据库查找异常

java.sql.SQLSyntaxErrorException: 
You have an error in your SQL syntax; 
check the manual that corresponds to your MySQL server version 
for the right syntax to use near ', friendname='3'' at line 1

SQL语句出错,把and写成了逗号

order by 关键字

order by 关键字用于对结果集按照一个列或者多个列进行排序。
order by关键字默认按照升序对记录进行排序。如果需要按照降序对记录进行排序,可以使用 desc 关键字。

理清项目思路,由于之前写项目时存入数据有误,导致有些东西找不到

上一篇:ES6中copyWithin()与fill()的不同之处


下一篇:TypeError: ‘NoneType‘ object is not subscriptable解决办法