在控制台上寫乙個簡單的資料庫增刪改查系統

2021-08-01 02:17:50 字數 2137 閱讀 6448

學生類:

public

class student

public

intgetid()

public

void

setid(int id)

public string getcname()

public

void

setcname(string cname)

public string getstudpass()

public

void

setstudpass(string studpass)

public string getstudaddress()

public

void

setstudaddress(string studaddress)

}

學生管理類

「`public class studentmanager extends stusql

}}private void deletestudent() throws exception

system.out.println(buffer);

system.out.println("****************************************=");

system.out.println("請選擇要刪除的學生的序號,序號使用空格隔開:");

string line = this.scan.nextline();

system.out.println("刪除操作不可恢復,是否確認執行此操作?y/n");

if("y".equalsignorecase(this.scan.nextline().trim()))else

}this.conn.close();

}private void updatestudent() throws exception

system.out.println(buffer);

system.out.println("**********************************");

system.out.println("請選擇要修改的學生的序號:");

student stud = null;

string linenum = this.scan.nextline();

for(int i = 0;i0)else}}

this.conn.close();

}private void insertstudent() throws exception else

system.out.println("是否繼續錄入?y/n");

type = this.scan.nextline().trim().touppercase();

}this.conn.close();

}private void querystudent() throws exception

system.out.println(buffer);

system.out.println("************************************");

system.out.println("請輸入查詢條件:");

string username = this.scan.nextline();

sql = "select * from student where username like?";

this.statement = this.conn.preparestatement(sql);

this.statement.setstring(1, "%"+username+"%");

this.set = this.statement.executequery();

buffer.delete(0, buffer.length());

while(this.set.next())

system.out.println(buffer);

this.conn.close();

}public static void main(string args) throws exception 連線類:

public class jdbcconnectionutil

寫乙個簡單控制台啟動的mcv服務

1.在專案工程裡新增wcf服務,工程中會出現兩個檔案iservice.cs和service.cs.iservice.cs中定義服務中的介面,介面必須加特性 operationcontract 才能在客戶端新增服務後,例項化物件中發現該函式。namespace service.cs中實現介面 3.啟動...

c 寫的乙個簡單資料庫操作類

using system using system.data using system.data.sqlclient using system.configuration using system.web using system.web.security using system.web.ui u...

實現乙個簡單的資料庫

所有應用軟體之中,資料庫可能是最複雜的。mysql的手冊有3000多頁,postgresql的手冊有2000多頁,oracle的手冊更是比它們相加還要厚。但是,自己寫乙個最簡單的資料庫,做起來並不難。reddit上面有乙個帖子,只用了幾百個字,就把原理講清楚了。下面是我根據這個帖子整理的內容。第一步...