Oracle 11g number 任意精度数字类型 http://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm#CNCPT313 存储数据的范围 正数:1 x 10-130 to 9.99...9 x 10125 ,数据精度为38个有效数字 负数:-1 x 10-130 to 9.99...99 x 10125 ,数据精度为38个有效数字 零:0 无穷大:仅仅只可以从oracle 5中导入 描述 标度scale代表小数部
创建序列 create sequence seq_student start increment maxvalue nominvalue nocycle nocache; 创建触发器 create or replace trigger trigger_student before insert on student for each row declare BEGIN select seq_student.nextval into :new.id from dual; END;
package agriculture_implement.util; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; import java.util.Map; public class JsontoMap { public static Map<String, Object> json2map(String s