• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






圣殿GIS

在GIS的国都里,我们自由的飞翔,用另外一个角度去认知和感受我们的世界。大家在转载本人文章时,请注明:圣殿GIS 和原文的出处!
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2007年8月15日

C#破解access数据库密码方法
摘要: C#破解access数据库密码方法 // 根据网上经验和方法用C#做一个破解程序 // 本程序最多取16位密码using System.IO;using System.Windows.Forms;class Access{ // 获取密码 static string GetPassword(string file) { // 未加密的文件0x42开... 阅读全文
posted @ 2007-08-15 11:37 圣殿GIS 阅读(1082) 评论(2) 推荐(0)
 
快速一次性读取ORACLE CLOB的方法
摘要: 一个静态函数, 直接使用即可,函数没有考虑到CLOB区数据很大的情况, 大家可以根据自己的需要来使用 /** * 从数据库中提取CLOB类型字段的内容并转换为字符串 * @param rs 数据库ResultSet,含有CLOB类型的字段 * @param clobidx 含有CLOB类型字段在ResultSet中的索引 * @return 取出的字符内容 ... 阅读全文
posted @ 2007-08-15 11:35 圣殿GIS 阅读(1654) 评论(0) 推荐(0)
 
Using C# for Inserting CLOB data in Oracle
摘要: Introduction Inserting CLOB data in OracleEven the latest versions of Oracle's database have a limitation on the size of strings that they can handle when storing and retrieving data from tables. Curr... 阅读全文
posted @ 2007-08-15 11:33 圣殿GIS 阅读(852) 评论(0) 推荐(0)
 
Read / Write BLOBs from / to Oracle
摘要: Overview ODP.NET offers faster and reliable access to Oracle Database by using Oracle Native APIs. ODP.NET provides features to access any .NET application. The data access through ODP.NET can be do... 阅读全文
posted @ 2007-08-15 11:31 圣殿GIS 阅读(907) 评论(0) 推荐(0)
 
.net中二进制大对象的操作(这里以clob为例) (转)
摘要: .net中二进制大对象的操作(这里以clob为例) public static void WriteLob(string table_name,string table_id,int id,int column,string content) { OracleConnection myCn = new OracleConnection(strConn); ... 阅读全文
posted @ 2007-08-15 11:29 圣殿GIS 阅读(558) 评论(1) 推荐(0)
 
SqlHelper改的OleDbHelper,OleDbHelper新增、修改、删除(操作二进制文件)
摘要: //===============================================================================// This file is based on the Microsoft Data Access Application Block for .NET// For more information please go to // ht... 阅读全文
posted @ 2007-08-15 11:28 圣殿GIS 阅读(2858) 评论(0) 推荐(0)