A TI PANAMA with Principal Researcher, Nam

2011. 8. 8. 09:18


Photos taken with our chief

Gapyeong
in korea on Monday, July 4, 2011

Theo Kim About a tí Panamá

The First Day of Network and Security

2011. 8. 8. 06:41


Monday, August 8, 2011

In first class, We are discuss about the basic of network.


Theo Kim IT Program/Network & Security

How to Connect Database in Microsoft SQL?

2011. 8. 6. 14:58


The programming which is related database in Android is same with JAVA programming.

1. To Include JDBC driver for Microsoft SQL in Android Project.
    (File Name : sqljdbc4.jar)
 



2. To confirm the driver.
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");

3. To connect the Microsoft Server.
Connection con = DriverManager.getConnection(connectionUrl);

4. To do something.
Statement stmt = con.createStatement();
String SQL = "SELECT * FROM ...";
stmt.executeQuery(SQL);


Theo Kim IT Program/Android Programming