摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.Objects;using System.Collections.Specialized;namespace TestEsql{ class EsqlOper { //返回基本数据 public Li... 阅读全文
摘要:
通过实例进行C#的Stack类学习 using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace ConsoleApplication1 ...{ class Program ...{ static void Main(string[] args) ...... 阅读全文
摘要:
/// <summary> /// 写系统日志 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void button2_Click(object sender, EventArgs e) { strin... 阅读全文
摘要:
在 Oracle 数据库中,我们通常在不同数据库的表间记录进行复制或迁移时会用以下几种方法:1. A 表的记录导出为一条条分号隔开的 insert 语句,然后执行插入到 B 表中2. 建立数据库间的 dblink,然后用 create tableB as select * fromA@dblink where ...,或 insert intoB select * from A@dblink wh... 阅读全文