採用java連結timesten記憶體資料庫
雖然主要是做TT的維保,但是由於TT使用的人相對少,很少相關的資料,就兩java如何連線TT都很難找到,這裡從官方文件中摘抄一段,做下記錄備查。
##Write the below program in a file MyConnectionTest.java using vi or your favorite text editor.
#MyConnectionTest.java
import java.sql.*;
class MyConnectionTest {
/* This is DSN that we specify in odbc.ini file */
static String dsnname = "myjdbctest";
/* URL to connect to the datastore, that contains the standard prefix and dsnname */
static String url = "jdbc:timesten:direct:" + dsnname;
public static void main (String args[])
{
/* Try to load the driver first */
try {
Class.forName("com.timesten.jdbc.TimesTenDriver");
} catch (ClassNotFoundException ex) {
System.out.println ("Failed to load the driver");
ex.printStackTrace();
}
/* Try to get the connecction to TimesTen datastore and close it*/
try {
Connection con = DriverManager.getConnection(url);
System.out.println ("Connection Success");
con.close();
} catch (SQLException ex) {
System.out.println ("Failed to connect/disconnect to TimesTen datastore");
ex.printStackTrace();
}
}
編譯:
javac MyConnectionTest.java
執行:
java MyConnectionTest
----------------------------End-------------------------------------------------
##Write the below program in a file MyConnectionTest.java using vi or your favorite text editor.
#MyConnectionTest.java
import java.sql.*;
class MyConnectionTest {
/* This is DSN that we specify in odbc.ini file */
static String dsnname = "myjdbctest";
/* URL to connect to the datastore, that contains the standard prefix and dsnname */
static String url = "jdbc:timesten:direct:" + dsnname;
public static void main (String args[])
{
/* Try to load the driver first */
try {
Class.forName("com.timesten.jdbc.TimesTenDriver");
} catch (ClassNotFoundException ex) {
System.out.println ("Failed to load the driver");
ex.printStackTrace();
}
/* Try to get the connecction to TimesTen datastore and close it*/
try {
Connection con = DriverManager.getConnection(url);
System.out.println ("Connection Success");
con.close();
} catch (SQLException ex) {
System.out.println ("Failed to connect/disconnect to TimesTen datastore");
ex.printStackTrace();
}
}
編譯:
javac MyConnectionTest.java
執行:
java MyConnectionTest
----------------------------End-------------------------------------------------
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24930246/viewspace-1064596/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【記憶體資料庫】TimesTen記憶體資料庫
- 記憶體資料庫TimesTen介紹記憶體資料庫
- Oralce記憶體資料庫TimesTen簡介記憶體資料庫
- 合理配置TimesTen記憶體資料庫Hash索引的PAGES引數記憶體資料庫索引
- Oracle與TimesTen記憶體資料庫Cache Group同步效率與TimesTen主備資料同步機制研究Oracle記憶體資料庫
- TimesTen記憶體資料庫評估和計算表大小及碎片記憶體資料庫
- Oracle - 資料庫的記憶體結構Oracle資料庫記憶體
- 瀚高資料庫記憶體結構資料庫記憶體
- 記憶體資料庫記憶體資料庫
- TimesTen記憶體庫monitor表引數說明記憶體
- TimesTen學習(三)遠端連線TimesTen資料庫資料庫
- Mongodb記憶體資料庫MongoDB記憶體資料庫
- Postgresql資料庫體系結構-程式和記憶體結構SQL資料庫記憶體
- 記憶體資料庫有幾個人用過?記憶體資料庫
- 記憶體資料庫快取介紹總結記憶體資料庫快取
- Java不同資料結構記憶體消耗比較Java資料結構記憶體
- 記憶體資料庫如何發揮記憶體優勢?記憶體資料庫
- PDF.NET記憶體資料庫的使用小結記憶體資料庫
- 理解TimesTen記憶體資料庫DBI檔案的作用以及相關故障處理記憶體資料庫
- TimesTen記憶體庫sys.odbc.ini引數說明記憶體
- 【大頁記憶體】Oracle資料庫配置大頁記憶體記憶體Oracle資料庫
- Python記憶體資料庫/引擎Python記憶體資料庫
- 構建個人記憶體資料庫記憶體資料庫
- JVM記憶體結構、Java記憶體模型和Java物件模型JVM記憶體Java模型物件
- 如何檢視MySQL資料庫佔多大記憶體,佔用太多記憶體怎麼辦?MySql資料庫記憶體
- java通過jdbc連結資料庫JavaJDBC資料庫
- Aerospike 分散式記憶體資料庫 筆記ROS分散式記憶體資料庫筆記
- 達夢資料庫基礎知識(三)達夢資料庫記憶體結構資料庫記憶體
- 記憶體資料庫快取使用者手冊總結記憶體資料庫快取
- Oracle - 資料庫的記憶體調整Oracle資料庫記憶體
- 記憶體資料庫發展歷程記憶體資料庫
- 記憶體資料庫快取介紹記憶體資料庫快取
- 主要測試記憶體和資料庫記憶體資料庫
- LINUX HUGEPAGES在大記憶體資料庫中的應用Linux記憶體資料庫
- 磁碟資料庫與記憶體資料庫的特點比較資料庫記憶體
- TimesTen學習(二)連線建立第一個資料庫資料庫
- 淺談JVM記憶體結構 和 Java記憶體模型 和 Java物件模型JVM記憶體Java模型物件
- 資料庫實現原理#6(共享記憶體)資料庫記憶體