winform sql server 增刪查改

2022-03-06 23:49:07 字數 2135 閱讀 6150

一、dbaccess.cs:

using system;

using system.collections.generic;

using system.text;

using system.data;

using system.data.sqlclient;

using system.collections;

///

/// 磅︽蟲兵sql粂

///

///

///

public static int executesinglesql(string sql)

catch (exception ex)}}

///

/// sqlㄆ叭矪瞶

///

///

public static void executesqltran(arraylist list)

}tr.commit();

}catch (exception ex)}}

public static void executesqltran2(arraylist list)

}tr.commit();

}catch (exception ex)}}

///

/// 浪琩琌τ贛撣計沮

///

///

///

public static int hasdata(string sql)

catch (exception ex)}}

}///

/// dataset摸計沮

///

///

///

public static dataset getdataset(string sql)

catch (exception ex)}}

}}二、using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.text;

using system.windows.forms;

private void cleartext()

private void button1_click(object sender, eventargs e)

else

button4_click(sender, e);

}else

}else

}private void button4_click(object sender, eventargs e)

private void button2_click(object sender, eventargs e)

else

cleartext();

button4_click(sender, e);

}private void button3_click(object sender, eventargs e)}}

三、program.cs

using system;

using system.collections.generic;

using system.windows.forms;

四、form1.designer.cs

private system.componentmodel.icontainer components = null;

///

/// 清除任何使用中的資源。

///

/// 如果應該公開 managed 資源則為 true,否則為 false。

protected override void dispose(bool disposing)

base.dispose(disposing);

}#region windows form 設計工具產生的程式碼

///

/// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。

//////

private void initializecomponent()

}

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...

增刪改查 JS陣列增刪改查這點事兒

1 length屬性 length屬性是陣列最重要的屬性,沒有之一,length屬性告訴我們這個陣列內有多少個資料元素,當length 0時說明陣列時乙個空陣列。我們想要遍歷陣列時可以直接將遍歷的終點設為 length 1。這是本文的重點,我們從增刪改查方面入手,梳理方法的作用和用法,有利於記憶和使...