當前位置:首頁 » 編程語言 » sqlservertutorial
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sqlservertutorial

發布時間: 2022-12-25 16:08:28

Ⅰ 如何用java(非jsp)實現excel導入Server sql 2000中已存在的表中(需要具體的代碼包括讀取和存入),謝謝

1、下載SQL Server 2000 driver for JDBC
SQL Server 2000 Driver For JDBC Downloads
該驅動截止目前有四個版本,建議下載最新的SP3版。
該驅動安裝成功後,請將安裝目錄下的lib目錄下的三個.jar文件加到CLASSPATH中;如果你使用的是JBuilder或Eclipse,將這三個文件根據IDE的提示加到工程中也可。

2、升級你的SQL Server 2000,為其打上最新的補丁。
這一步可能不是必需的,因操作系統環境而定,在不打補丁的情況,有時可以正常連接,有時卻不能,所以建議還是安裝最新的SQL Server 2000補丁(SP4)和JDBC驅動(SP3)。
如果你的程序在運行時提示:Error establishing socket,一般情況下,打上SQL Server 2000的補丁就可解決。

3、驅動的載入方法
在建立連接之前,要先載入SQL Server 2000 JDBC的驅動,代碼形式如下:
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
在此注意,forName方法的參數字元串必須完全相同於以上內容,大小寫是區分的,其實這個串就是驅動類的完整名稱:包名+類名。

4、獲得一個連接
在操作資料庫之前,要先獲得與資料庫的一個連接,使用如下代碼格式:
DriverManager.getConnection(連接字元串, 登錄用戶名, 登錄密碼);
例:
DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433; DatabaseName=pubs", "sa", "");
在此處關鍵的是連接字元串的內容,localhost部分即伺服器的名字,可以更改;1433部分為SQL Server使用的埠號,根據實際情況修改即可;DatabaseName即為要連接的資料庫的名字,在此注意DatabaseName之前的是分號,而不是冒號。

5、代碼實例

// 導入Java SQL包,連接資料庫必需;
import java.sql.*;

public class TestDB {
public static void main(String[] args) {
String driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
String dbURL = "jdbc:microsoft:sqlserver://localhost:1433; DatabaseName=pubs";
String userName = "sa";
String userPwd = "";
Connection dbConn

try {
Class.forName(driverName);
dbConn = DriverManager.getConnection(dbURL, userName, userPwd);
System.out.println("Connection Successful!");
}
Catch (Exception e) {
e.printStackTrace();
}
}
}

6、可能出現的問題
如果以上的代碼運行後,輸出"Connection Successful!",那就代表一切正常,連接資料庫成功,你可以進行Statement、ResultSet的操作了;反之的話,一定是出現了相應的異常。
如果提示錯誤"Error establishing socket",請根據之前的說明安裝相應的SQL Server 2000補丁即可。
如果提示"ClassNotFoundException",那一定是 Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver"); 該段代碼拼寫有誤,或者是SQL Server 2000 Driver For JDBC Lib目錄下的三個.jar文件未加入到CLASSPATH中。

如何讀取EXCEL請看
http://www.java2java.com/CN/Tutorial/Java/0340__Database/0600__Excel.htm

Ⅱ java程序是怎麼操作資料庫的(高分懸賞)

Java 實現連接sql server 20002007-12-16 13:28:00.0
第一種:通過ODBC連接資料庫

JAVA語言的跨平台的工作能力(Write Once ,Run Anywhere)、優秀的圖像處理能力(我相信現在沒有那種語言可以超過JAVA在網路上的圖形處理能力)、網路通信功能、通過JDBC資料庫訪問技術等等,讓我們誰都不可否認JAVA語言是SUN公司對於計算機界的一個巨大的貢獻。筆者可以描述這樣一個場景:有一天你上網完全可以不用IE 或者NETSCAPE,上網就像是玩游戲,你可以獲得游戲那麼精美的圖像和互動的感覺,如果你玩過UO,也許你就知道那種感覺了,但是JAVA做成的東西一定會超過UO的,因為不單單是游戲,也不是單單是瀏覽器,如果你願意(要你有錢,有時間,有優秀的JAVA人才)你可以把所有的這一切用Java完全集成出來!!!我不是誇大JAVA的功能,大家可以訪問一下http://www.simchina.net的那個社區程序,你就能找到一種感覺了:相信我沒有說什麼假話 。好了,不說廢話了,現在我向你介紹JAVA的資料庫訪問技術----JDBC資料庫訪問技術(你可千萬不要搞成ODBC了喲!)。

JDBC技術事實上是一種能通過JAVA語言訪問任何結構化資料庫的應用程序介面(API)(Sun這樣說的,我也不知道是不是真的),而且現在的JDBC 3.0據Sun說也能訪問Execel等電子表格程序!

JDBC對於資料庫的訪問有四種方式,我們這里只是介紹兩種:

第一種是通過ODBC做為「橋」(Bridge)對資料庫訪問,第二種是直接對資料庫訪問。

我們先來看看第一種JDBC<-->ODBC訪問的流程:

JDBC Driver Mannager->JDBC<->ODBC橋->ODBC->資料庫客戶機驅動庫->資料庫伺服器->返回查詢結果,在這種訪問中值的我們注意的是雖然JAVA是"Write Once ,Run Anywhere",但是如果通過這種訪問的話,需要客戶端必須設置ODBC和有相應的資料庫客戶機的驅動,當你看了下面的另外一個流程的時候或許你會想:明明下一種更方面,為什麼還要有這個東西的產生!呵呵,因為,未必所有的資料庫伺服器提供商都提供下面的JDBC驅動程序(給JDBC訪問提供相應的介面),所以就有了JDBC<->ODBC Bridge。

接著再讓我們來看看第二種訪問流程:

JDBC Driver Mannager->局部JDBC驅動->客戶端資料庫->資料庫伺服器->返回查詢結果,這種訪問事實上是轉換JDBC調用為相應的資料庫(Oracle, Sybase, Informix, DB2, 和其他的資料庫資料庫管理系統)的客戶端API調用(這么說,不知道大家能不能懂,說簡單點就好像ASP不是通過DSN對資料庫訪問而是通過OLEDB訪問,說道這里我還是不知道大家能不能明白我的意思。哎呀,不要扔雞蛋嘛!),這種方式的訪問需要相應的資料庫提供商提供相應的JDBC驅動程序,但是有一種好處,可以獨立於odbc用於可以隨處可Run的客戶端的瀏覽器中的Applet程序。
我們下面將給大家一個通過JDBC-ODBC橋資料庫訪問的實例,但是在看下面的事例前我想問大家一次:JDK1.3裝了嗎?資料庫驅動裝了嗎(我使用的是SQLserver)?你該沒有使用Linux吧?雖然java支持Linux,但是老兄我可沒有使用Linux喲(這同JAVA的Write Once ,Run Anywhere沒有關系),由於使用了運行於Win下面的ODBC,我建議你看看這篇東西http://www.aspcn.com/showarticle.asp?id=112,否則你要是有了問題,出不了結果那豈不是要怪我(不過欲加之罪,何患無吃... ...),冤枉呀!

哎呀,說了這么多的廢話,還是讓我們來看看到底JDBC的調用吧!既然我們是通過odbc訪問資料庫,所以這個odbc是跑不了的,我們先來設置你的odbc:打開你的odbc數據源->選擇系統dsn(Click加新的dsn-)->接下來輸入選擇資料庫類型、輸入dsn名:、選擇伺服器、連接資料庫的方式、輸入資料庫的登陸用戶和密碼->測試連接,如果測試成功的話,那麼你的dsn就建立好了,我的dsn名為Sqlserver.使用的是sqlserver7.0,以 「sa」登陸,密碼為空。這些東西都是後面要用道的!

好了下面讓我們來看程序代碼: (該代碼已經通過運行)
//###########################################################
//代碼開始
//###########################################################

import java.sql.*;
//載入java數據連接包,java基本所有的資料庫的調用的都在這個東西裡面

public class InsertCoffees {

public static void main(String args[]) {

String url = "jdbc:odbc:sqlserver";
//取得連接的url名,注意sqlserver是dsn名
Connection con;
//實例化一個Connection對象
Statement stmt;
String query = "select * from col_link";
//選擇所有的Col_link表中的數據輸出

try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
//載入jdbc-odbc橋驅動

} catch(java.lang.ClassNotFoundException e) {
System.err.print("ClassNotFoundException: ");
//載入jdbc-odbc橋錯誤
System.err.println(e.getMessage());
//其他錯誤
}

try {

con = DriverManager.getConnection(url, "sa", "");
//資料庫連接

stmt = con.createStatement();
//Create 一個聲明
stmt.executeUpdate("CREATE TABLE col_link (sitename varchar (20) NULL ,siteurl varchar (50) NULL) ");
//執行了一個sql語句生成了一個表col_link的表
stmt.executeUpdate("insert into col_link values('ASP中華網','http://www.aspcn.com')");
stmt.executeUpdate("insert into col_link values('永遠到底有多遠','http://xuankong.com')");
//執行一個insert into語句
stmt.executeUpdate("update col_link set siteurl='http://www.aspcn.com/xuankong/xuankongt.jpg' where siteurl='http://xuankong.com'");
//執行一個update語句,更新資料庫
ResultSet rs = stmt.executeQuery(query);
//返回一個結果集
System.out.println("Col_link表中的數據如下(原始數據)");
//下面的語句使用了一個while循環列印出了col_link表中的所有的數據
System.out.println("站點名 "+" "+"站點地址");
System.out.println("---------------"+" "+"----------------");
while (rs.next()) {
String s = rs.getString("sitename");
String f = rs.getString("siteurl");
//取得資料庫中的數據
System.out.println(s + " " + f);
/*String t = rs.getString(1);
String l = rs.getString(2);
System.out.println(t + " " + l);*/
/*jdbc提供了兩種方法識別欄位,一種是使用getXXX(注意這里的getXXX表示取不同類型欄位的不同的方法)獲得欄位名,
第二種*是通過欄位索引,在這里我把第二種方法注釋了*/
/*你可以訪問這個連接獲得getxxx的用法:http://java.sun.com/docs/books/tutorial/jdbc/basics/_retrievingTable.html*/
}
stmt.close();
con.close();
//上面的語句關閉聲明和連接
} catch(SQLException ex) {
System.err.println("SQLException: " + ex.getMessage());
//顯示資料庫連接錯誤或者查詢錯誤
}
}
}
//###########################################################
//代碼結束
//###########################################################

在上面這個程序中我想你展示了如何使用JDBC-ODBC連接資料庫,使用SQL語句生成一個表,使用SELECT、INSERT 、UPDATE語句取的、插入和更新一個表中的數據,如何通過欄位名和欄位索引訪問資料庫中的東東!我希望你能從上面的代碼真正的學習到一些東西!

發揮你的想像力,設想一下JAVA到底,比如說可以通過資料庫做一個不需要GUI(圖形用戶界面)的聊天室,呵呵,感覺起來就像在DOS環境下打字的聊天室!哈哈!

最後需要說的是筆者的調試上面程序的環境:WIN2000 , JDK1.3,MS SQLSERVER編輯軟體:EDITPLUS 2.01a(這最後的東西可不是廢話,雖然早就了一些專業的JAVA開發工具,但是筆者建議JAVA初學者使用文本軟體開發JAVA程序)

第二種:直接用jdbc訪問資料庫

(1) 該實例已經運行通過

jsp連接Sql Server7.0/2000資料庫
testsqlserver.jsp如下:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs";
//pubs為你的資料庫的
String user="sa";
String password="";

Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {%>
您的第一個欄位內容為:<%=rs.getString(1);%>
您的第二個欄位內容為:<%=rs.getString(2);%>
<%}%>
<%out.print("資料庫操作成功,恭喜你");%>
<%rs.close();
stmt.close();
conn.close();

%>
</body>
</html>

(2)java訪問sqlserver伺服器

第一步:安裝jdbc

點擊SQL Server for JDBC驅動程序安裝程序setup.exe(可以到微軟網站下載 http://msdn.microsoft.com/library/default.asp?rul=/downloads/list/sqlserver.asp下載)

第二步:設置系統變數classpath

假設SQL Server for JDBC 驅動程序安裝在d:\jdbc\,則classpath應該設置如下:

classpath:=.;…;d:\jdbc\lib; d:\jdbc\lib\mssqlserver.jar; d:\jdbc\lib\msutil.jar; d:\jdbc\lib\msbase.jar;

注意:設置時要在最前面的點號和分號

第三步:編輯java程序並且運行

實例1如下:

//import com.microsoft.*;

//注意:在java與sql server 連接時不需要這個包,其他書上說這個包是必需的,這個問題有待進一步討論

import java.sql.*;

import java.net.URL;

class insert

{

public static void main(String[] args)

{

String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=northwind";

String query="select * from categories";

String query1="insert categories values(10,'Hanbao','Sweet')";

String query2="insert categories values(11,'Naicha','Coffee taste')";

try

{

Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");

Connection con=DriverManager.getConnection(url,"sa","739555");

Statement stmt=con.createStatement();

stmt.executeUpdate(query1);

stmt.executeUpdate(query2);

stmt.close();

con.close();

}

catch(SQLException ex)

{

}

catch(java.lang.Exception ex)

{

ex.printStackTrace();

}

}

}

實例2如下:

//import com.microsoft.*;

//注意:在java與sql server 連接時不需要這個包,其他書上說這個包是必需的,這個問題有待進一步討論

import java.sql.*;

import java.net.URL;

class java2sqlserver

{

public static void main(String[] args)

{

String url="jdbc:microsoft:sqlserver://localhost:1433;User=sa;Password=739555;DatabaseName=northwind";

String query="Select * From Categories";

try

{

Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");

//DriverManager.setLogStream(System.out);

Connection con=DriverManager.getConnection(url);

checkForWarning(con.getWarnings());

Statement stmt=con.createStatement();

ResultSet rs=stmt.executeQuery(query);

dispResultSet(rs);

rs.close();

stmt.close();

con.close();

}

catch(SQLException ex)

{

System.out.println(ex.toString()+"----SQLException caught----");

while(ex!=null)

{

System.out.print("SQLState:"+ex.getSQLState());

System.out.print("Message:"+ex.getMessage());

System.out.print("Vendor:"+ex.getErrorCode());

ex=ex.getNextException();

System.out.println("");

}

}

catch(java.lang.Exception ex)

{

ex.printStackTrace();

}

}

private static boolean checkForWarning(SQLWarning warn)

{

boolean rc=false;

if(warn!=null)

{

System.out.println("----Warning----");

rc=true;

while(warn!=null)

{

System.out.print("SQLState:"+warn.getSQLState());

System.out.print("Message:"+warn.getMessage());

System.out.print("Vendor:"+warn.getErrorCode());

System.out.println("");

warn=warn.getNextWarning();

}

}

return rc;

}

private static void dispResultSet(ResultSet rs) throws SQLException

{

int i;

ResultSetMetaData rsmd=rs.getMetaData();

int numCols=rsmd.getColumnCount();

for(i=1;i<=numCols;i++)

{

if(i>1) System.out.print(", ");

System.out.print(rsmd.getColumnLabel(i));

}

System.out.println("");

boolean more=rs.next();

while(more)

{

for(i=1;i<numCols;i++)

{

if(i<1) System.out.print(", ");

System.out.println(rs.getString(i));

}

System.out.println("");

more=rs.next();

}

}

//System.out.println("Hello World!");

}

以上兩個實例筆者已經通過運行!

怎麼配置jdbc/sqlserver

JDBC連接各種資料庫設置大全:
oracle
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl";
//orcl為你的資料庫的SID
String user="scott";
String password="306041";
Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);

SQL
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs";
//pubs為你的資料庫的
String user="sa";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);

MySql
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url ="jdbc:mysql://localhost/myDB?user=root;password=root;useUnicode=trueamp;characterEncoding=8859_1"
//myDB為資料庫名
Connection conn= DriverManager.getConnection(url);

希望能幫頂你,呵呵!!!

Ⅳ 潤乾報表數據源配置問題,連接不上啊!

我看了你的截圖,驅動程序選擇沒錯,數據源URL的連接貌似也沒有寫錯,但是你的用戶名,應該是直接寫吧,怎麼還有sndeip呢?以及口令就是密碼,所以我斷定是你的用戶名和密碼的錯誤。如果還不能解決,可能就是你沒有聯網,或者是產品bug,建議你找潤乾的技術支持尋求幫助。潤乾報表以前還挺好的,現在越來越不行了。

Ⅳ SQLSERVER 中有沒有和MySQL LAST_INSERT_ID()函數等價的函數

Transact-SQL 參考

IDENTITY(屬性)
在表中創建一個標識列。該屬性與 CREATE TABLE 及 ALTER TABLE Transact-SQL 語句一起使用。

說明 IDENTITY 屬性與 SQL-DMO Identity 屬性不同,後者表現列的行標識屬性。

語法
IDENTITY [ ( seed , increment ) ]

參數
seed

裝載到表中的第一個行所使用的值。

increment

增量值,該值被添加到前一個已裝載的行的標識值上。

必須同時指定種子和增量,或者二者都不指定。如果二者都未指定,則取默認值 (1,1)。

注釋
如果在經常進行刪除操作的表中存在著標識列,那麼在標識值之間可能會產生差距。如果這構成了問題,那麼請不要使用 IDENTITY 屬性。但是,為了確保未產生差距,或者為了彌補現有的差距,在用 SET IDENTITY_INSERT ON 顯式地輸入標識值之前,請先對現有的標識值進行計算。

如果重新使用已刪除的標識值,那麼請使用示例 B 中的示例代碼進行檢查,以獲得下一個可用的標識值。請用您的表名、標識列數據類型以及(該數據類型的)最大可允許值的數值 –1 替換 tablename、column_type 和 max(column_type) – 1。

使用 DBCC CHECKIDENT 檢查當前的標識值,並將其與標識列中的最大值進行比較。

當將 IDENTITY 屬性與 CREATE TABLE 一起使用時,Microsoft® SQL Server™ 使用 CREATE TABLE 的 NOT FOR REPLICATION 選項替代標識列的自動增加。通常,SQL Server 給插入表中的每個新行指派一個值,該值比前面的最高值要大出某些增量。但是,如果新行是由另一個數據源復制過來的,那麼標識值必須保持與其在數據源中完全相同。

示例
A. 將 IDENTITY 屬性與 CREATE TABLE 一起使用
下面的示例創建一個新表,該表將 IDENTITY 屬性用於獲得自動增加的標識號。

USE pubs
IF EXISTS(SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = 'new_employees')
DROP TABLE new_employees
GO
CREATE TABLE new_employees
(
id_num int IDENTITY(1,1),
fname varchar (20),
minit char(1),
lname varchar(30)
)

Ⅵ sql2014如何將表導出

你可以使用SQL Server 自帶的功能:SQL Server 導入和導出向導。此功能為在數據源之間復制數據和構造基本包提供了一種最為簡單的方法。

參考鏈接:
https://msdn.microsoft.com/zh-cn/library/ms140052.aspx
https://www.mssqltips.com/sqlservertutorial/202/simple-way-to-export-data-from-sql-server/

Ⅶ java連接sql server2005 身份驗證是windows

確定TCP/IP有沒有啟動.
確定TCP埠對不對,
在TUTORIAL和SAMPLE里的都是1433埠,
可是我SQL
SERVER的TCP接聽埠是2159.
把程序里的1433改成1459就馬上可以用了.
設置方法:
打開SQL
SERVER
CONFIGURATION
MANAGER
(不記得SQLEXPRESS版本有沒有這個了,
ENTERPRISE版本的有),
左邊窗口擴展SQL
SERVER
2005
網路配置,
選擇SQLEXPRESS
的協議(你的名字不一定是SQLEXPRESS),
右邊窗口中雙擊TCP/IP,
彈出窗口中頂部TAB點"IP
地址",
看IPA11(或者是IPAll..看不出來是1還是l),
裡面"TCP
動態埠"的值就是你的埠.

Ⅷ sql server 2005資料庫怎樣重啟

在SQL Server 配置管理器中,展開SQL Server 2005的網路配置,然後點擊伺服器實例如:MSSQLSERVER 的協議。
在右窗格中,雙擊TCP/IP協議。
在TCP/IP屬性對話框中,單擊IP地址選項卡。
在TCP埠框中的IPAll節,輸入一個可用的埠號。對於本教程中,我們將使用1500。
單擊確定以關閉該對話框,然後單擊確定的警告說,必須重新啟動服務。
在左窗格中,單擊SQL Server 2005的服務。
在右窗格中,右鍵單擊SQL Server實例如:SQL Server (MSSQLSERVER),然後單擊重新啟動。當資料庫引擎重新啟動時,它將偵聽埠1500 。
--------------------------------------------------------------------------------
In SQL Server Configuration Manager, expand SQL Server 2005 Network Configuration, and then click on the server instance you want to configure.
In the right pane, double-click TCP/IP.
In the TCP/IP Properties dialog box, click the IP Addresses tab.
In the TCP Port box of the IPAll section, type an available port number. For this tutorial, we will use 1500.
Click OK to close the dialog box, and click OK to the warning that the service must be restarted.
In the left pane, click SQL Server 2005 Services.
In the right pane, right-click the instance of SQL Server, and then click Restart. When the Database Engine restarts, it will listen on port 1500.
本文來自: 腳本之家(www.jb51.net) 詳細出處參考:http://www.jb51.net/article/17610.htm

Ⅸ sql表導入到另外一個資料庫中

可以用SQL Server Import and Export Wizard或者 SSIS 創建一個Data Flow Task 來實現。
具體步驟,參考一下鏈接:
http://www.mssqltips.com/sqlservertutorial/202/simple-way-to-export-data-from-sql-server/
http://www.mssqltips.com/sqlservertip/2684/importing-sql-server-data-using-ssis--which-option-is-fastest/

Ⅹ 幫忙翻譯一份中文簡歷

軟體自動翻譯的
錯了別找我

Self assessment
The company has several years of experience in sales and service management, communication and interpersonal relationship of certain advantages, can adapt work environment and the fast investment. In sales and planning had some success. Choose target for Japanese companies or companies in Europe. The development of large international enterprise ERP, have many years of experience and understanding of the c # development, CRM, ERP system, medical and hiss and have borne the project manager, several large-scale enterprise of CRM project management experience.

Objective
Properties: full-time work target location in Shanghai
Hope: computer software, Internet/e-commerce, Network game
Target function: software engineers, Software testing, Project manager, The project manager

Project experience
The 2008-2009 / may / 8: Shanghai ya medical management system (HIS)
SQL2000.net software environment: SQL2005 / / Oracle
Development tools: VS2003
Project description: in the medical market of the special region and civilian battalion hospital hospital management, suitable for the development of such enterprises apply HIS system
Main ties: responsible for the improvement of the existing system and the function of the development and management of the core team. During the design and development of private and 2 in the hospital, HIS system using C/S structure, use SQLServer database and language use Oracle database compatible for the.net framework (C #)

In 2007-2008 / / 5 August: hangzhou interstellar network Co., ltd., CRM system (UT/favorable links /)
Software environment: SQL2000 / Oracle.net
Development tools: VS2003
Project description: the period for a number of projects and project management and the development of some projects.
Favorable for mobile phone instry through the communication instry CRM UT CRM TCL for household electrical appliance instry CRM
Main functions for the system realizes the customer management, inventory management, sales management, maintenance and management of the process, a series of management informationization unification. Effective use of computers and Internet to improve the competitiveness of enterprises
Description: bear the responsibilities of the project ring the project manager, because here folded together, project in the core function of bear the development work

2007/2-5: Shanghai 2007 / sales company gree air-conditioner sales management system (as the main project after project transfer and core framework by hangzhou interstellar acquisition)
Environment: SQL2000.net software
Development tools: VS2003
Project description: the management of marketing sales company developed a set of requirements custom-made sales process management system.
Description: project manager, responsible for project requirement investigation, architecture, team and progress management, communication, etc

December 2006-2007 / / 8: Shanghai mitsubishi after-sales service management system
Software environment: the.net, SQL2000
Development tools: VS2003
Project description: Shanghai mitsubishi air-conditioning joint-stock company after-sales service for the whole management system, and the seven big central headquarters and subordinate branches across hundreds of outlets and the dealer sales, installation and maintenance management, and its relevant business and process brings settlement, appraisal management, warehouse management, spare parts management, and to handle customer service parts according to call proce dispatching and complaints etc.
Responsibility: responsible for the whole project description of project management: the requirement analysis, system structure, communication, project development planning, communication, the distribution and the work schele for solving the problem of tracking and etc.

2005-2006 November 2: sinian group ERP/development
Software environment: the.net (c # + asp.net)
Hardware environment: Windows
Development tools: Microsoft Visual studio.net 2003 SQL2000 +
Project description: totally independent development of integrated ERP system
Description: the responsibility of developing. SD moles
Ecation experience
Since August 2006 /, wuhan university of technology, computer science and technical college
1993-1998/7 July/China university of mining resource economy management college
Training and experience
2005/10 letter male Japanese Japanese
Since 2008/8-2 sun ecation Japan language learning are learning Japanese communication ability
In 2003, 2004 (5-10 / prize.the software college ACCP software engineers and ACCP tutorial senior programmers certificate of labor
Learn the basic ecation and learning the software programming.net programming c + + programming java2ee sqlserver database programming and Oracle programming techniques and concepts, now in a few websites and enterprise management system development.
November 2004 / has advanced programmers certificate