摘要:
1. 字符串有整型的相互转换 String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2. 向文件末尾添加内容 1 2 3 4 阅读全文
摘要:
创建数据库: CREATA DATABASE <数据库名> 删除数据库: DROP DATABASE <数据库名> SQL基本数据类型 (1)数值型 INTEGER 长整型 SMALLINT 短整型 REAL 浮点型 DOUBLE PRECISION 双精度浮点数 FLOAT (n) 浮点数,精确到 阅读全文