資料庫操作工具類

2021-08-31 06:40:57 字數 1119 閱讀 4960

using system;

using system.configuration;

using system.data;

using system.linq;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.htmlcontrols;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.xml.linq;

using system.text;

using system.security.cryptography;//md5加密需引入的命名空間

using system.data.sqlclient;//資料庫操作需引入的命名空間

///

/// db 的摘要說明

///

public class db

///

/// 連線資料庫

///

/// 返回sqlconnection物件

public sqlconnection getcon()

catch (exception e)

finally

}///

/// 執行sql查詢語句

///

/// 查詢語句

/// 返回datatable資料表

public datatable redt(string cmdstr)

///

/// 執行sql查詢語句

///

/// 查詢語句

/// 返回sqldatareader物件dr

public sqldatareader redr(string str)

///

/// md5加密

///

/// 被加密的字串

/// 返回加密後的字串

public string ge***5(string strpwd)

return pwd;}}

mysql資料庫操作工具類 Mysql資料庫工具類

import pymysql 匯入資料庫驅動模組 classmysqlhelper db mysqlhelper localhost 3306,root root 李森 def init self,host,port,user,passwd,db,charset utf8 self.host hos...

轉型操作工具類

package org.smart4j.chapter2.util import org.apache.commons.lang3.stringutils created by sunx on 2017 6 28.轉型操作工具類 public final class castutil 轉為strin...

Android SQLITE 操作工具類

首先建立乙個類 databasehelper 繼承sqliteopenhelper幫助類,定義資料庫版本,資料庫名稱,建立表名。private static final int database version 1 資料庫版本號 private static final string databas...