一些Oracle数据库用法的小总结 1.使用insert into创建新表 insert into destdb.sub_contract (userid,contractid) select msisdn,product from month_payinfo partition (partitionname) 2.select 字段中使用条件分支 (case when (status=7) then 9 else status end) as status 3.判断字段为空时设置默认值 nvl
在看Android的文档时,看到了这么一个东西: Loader 究竟是什么东西呢? Introduced in Android 3.0, loaders make it easy to asynchronously load data in an activity or fragment. Loaders have these characteristics: 1.They are available to every Activity and Fragment. //支持Activity和F
B. Filya and Homework time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Today, hedgehog Filya went to school for the very first time! Teacher gave him a homework which Filya was unable to com
using UnityEngine; using System.Collections; using Mono.Data.Sqlite; using System.Data; public enum DataBaseMessage //用来存放数据库的异常信息 { Normal = , //正常 AddDataExist, //添加的数据已经存在 PrimaryKeyNoExist, //主键不存在 } //用来对数据库的操作 public class DataBaseManager //对数据