摘要:
class test { public string a; public int b; public byte[] c; public IntPtr d; } 把上面对象序列化成string并保存。 test t=new test() { a = "aa", b = 444, c = new byt 阅读全文
摘要:
sql2102支持的分页查询 注意:以下都是先执行排序,再取行数据 select* from t_workers order by worker_id desc offset 3 rows --先执行排序之后,从第4行开始取全部,即前3行不要select* from t_workers order 阅读全文