码迷,mamicode.com
首页 >  
搜索关键字:dbhelper    ( 219个结果
能用存储过程的DBHelper类
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; namespac...
分类:数据库   时间:2014-09-04 09:40:37    阅读次数:311
操作SQLite的dbhelper
操作SQLite的dbhelperpublic class DbHelper { string connStr = @"Data Source=" + System.Environment.CurrentDirectory + @"\workhelper.db;Initial C...
分类:数据库   时间:2014-08-31 18:29:21    阅读次数:318
DBHelper类
using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace Bus...
分类:数据库   时间:2014-08-29 17:45:48    阅读次数:249
android数据库简单操作
1.DbOpenHelperpackage com.example.dbtest.dbHelper;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database...
分类:移动开发   时间:2014-08-24 23:52:03    阅读次数:266
android sqliteopenhelper 数据库操作
//只有调用了DatabaseHelper的getWritableDatabase()方法或者getReadableDatabase()方法之后,才会创建或打开一个连接SQLiteDatabasedb=dbHelper.getReadableDatabase(); 1、//execSQL用于执行SQ...
分类:移动开发   时间:2014-08-18 18:18:52    阅读次数:210
java 批量插入10万条数据
for (int i = 0; i < 100000; i++) { dbHelper.insert("INSERT aaa(name) Values ('1')"); } 运行时间==780450ms conn = getConn(); // JAVA默认为TRUE,我们自己处理需要设置为FALS...
分类:编程语言   时间:2014-08-05 22:29:10    阅读次数:683
.net编程:自动生成会员卡号
/// /// 自动生成会员卡号 /// void CardNumber() { string sql = string.Format("select top 1 cardId from cardInfo order by cardId desc"); DBHelper.cmd = new...
分类:Web程序   时间:2014-08-03 12:31:25    阅读次数:417
DBHelper (支持事务与数据库变更) z
using System;using System.Data;using System.Data.Common;using Project.BaseFramework;using System.Collections.Generic;using System.Configuration;namesp...
分类:数据库   时间:2014-07-25 14:13:31    阅读次数:365
DBHelper (支持事务与数据库变更)
1 概述这个数据库操作类的主要特色有1> 事务操作更加的方便2> 变更数据库更加的容易 Normal 0 7.8 磅 0 2 false false false EN-US ZH-CN X-NONE ...
分类:数据库   时间:2014-07-25 02:42:54    阅读次数:410
MyEclipse生成java API文档
API文档是提供接口是必须的,如果用word文档,不仅书写起来很麻烦,而且对于使用者来说很不方便。可以使用myEclipse来生成API文档,与java提供的官方API文档一样。一下是详细步骤。/** *数据库操作通用程序包 */ packagexju.dbhelper; importjava.sql.*; /** *数据库操作通用接..
分类:编程语言   时间:2014-07-17 22:00:16    阅读次数:600
219条   上一页 1 ... 19 20 21 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!