摘要: ORA-00911: invalid character。这是因为在语句末尾加上了“;”的缘故,去掉“;”SQL就可以执行了~ 阅读全文
posted @ 2012-09-05 15:42 云海之上 阅读(11756) 评论(0) 推荐(1) 编辑
摘要: 在之前只知道SqlServer支持数据批量插入,殊不知道Oracle、SQLite也是支持的,不过Oracle需要使用Orace.DataAccess驱动,今天就贴出几种数据库的批量插入解决方法。 IProvider里有一个用于实现批量插入的插件服务接口IBatcherProvider。 /// <summary> /// 提供数据批量处理的方法。 /// </summary> public interface IBatcherProvider : IProviderService { /// <summary> /// 将 <see ... 阅读全文
posted @ 2012-09-05 09:13 云海之上 阅读(1456) 评论(0) 推荐(0) 编辑