Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d2620c99
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d2620c99
编写于
1月 21, 2021
作者:
Z
zyyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
change
上级
d96f57a8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
50 addition
and
38 deletion
+50
-38
src/connector/jdbc/src/test/java/com/taosdata/jdbc/SelectTest.java
...ctor/jdbc/src/test/java/com/taosdata/jdbc/SelectTest.java
+46
-34
src/connector/jdbc/src/test/java/com/taosdata/jdbc/StableTest.java
...ctor/jdbc/src/test/java/com/taosdata/jdbc/StableTest.java
+4
-4
未找到文件。
src/connector/jdbc/src/test/java/com/taosdata/jdbc/SelectTest.java
浏览文件 @
d2620c99
...
@@ -9,61 +9,73 @@ import java.util.Properties;
...
@@ -9,61 +9,73 @@ import java.util.Properties;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
public
class
SelectTest
extends
BaseTest
{
public
class
SelectTest
{
Connection
connection
=
null
;
Connection
connection
;
Statement
statement
=
null
;
String
dbName
=
"test"
;
String
dbName
=
"test"
;
String
tName
=
"t0"
;
String
tName
=
"t0"
;
String
host
=
"
localhost
"
;
String
host
=
"
127.0.0.1
"
;
@Before
@Before
public
void
createDatabaseAndTable
()
throws
SQLException
{
public
void
createDatabaseAndTable
()
{
try
{
try
{
Class
.
forName
(
"com.taosdata.jdbc.TSDBDriver"
);
Class
.
forName
(
"com.taosdata.jdbc.TSDBDriver"
);
Properties
properties
=
new
Properties
();
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_CHARSET
,
"UTF-8"
);
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_LOCALE
,
"en_US.UTF-8"
);
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_TIME_ZONE
,
"UTC-8"
);
connection
=
DriverManager
.
getConnection
(
"jdbc:TAOS://"
+
host
+
":0/"
,
properties
);
Statement
stmt
=
connection
.
createStatement
();
stmt
.
execute
(
"drop database if exists "
+
dbName
);
stmt
.
execute
(
"create database if not exists "
+
dbName
);
stmt
.
execute
(
"create table if not exists "
+
dbName
+
"."
+
tName
+
" (ts timestamp, k int, v int)"
);
stmt
.
close
();
}
catch
(
ClassNotFoundException
e
)
{
}
catch
(
ClassNotFoundException
e
)
{
return
;
return
;
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
}
}
Properties
properties
=
new
Properties
();
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_HOST
,
host
);
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_CHARSET
,
"UTF-8"
);
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_LOCALE
,
"en_US.UTF-8"
);
properties
.
setProperty
(
TSDBDriver
.
PROPERTY_KEY_TIME_ZONE
,
"UTC-8"
);
connection
=
DriverManager
.
getConnection
(
"jdbc:TAOS://"
+
host
+
":0/"
,
properties
);
statement
=
connection
.
createStatement
();
statement
.
executeUpdate
(
"drop database if exists "
+
dbName
);
statement
.
executeUpdate
(
"create database if not exists "
+
dbName
);
statement
.
executeUpdate
(
"create table if not exists "
+
dbName
+
"."
+
tName
+
" (ts timestamp, k int, v int)"
);
}
}
@Test
@Test
public
void
selectData
()
throws
SQLException
{
public
void
selectData
()
{
long
ts
=
1496732686000
l
;
long
ts
=
1496732686000
l
;
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
try
(
Statement
stmt
=
connection
.
createStatement
())
{
ts
++;
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
int
row
=
statement
.
executeUpdate
(
"insert into "
+
dbName
+
"."
+
tName
+
" values ("
+
ts
+
", "
+
(
100
+
i
)
+
", "
+
i
+
")"
);
ts
++;
System
.
out
.
println
(
"insert into "
+
dbName
+
"."
+
tName
+
" values ("
+
ts
+
", "
+
(
100
+
i
)
+
", "
+
i
+
")\t"
+
row
);
int
row
=
stmt
.
executeUpdate
(
"insert into "
+
dbName
+
"."
+
tName
+
" values ("
+
ts
+
", "
+
(
100
+
i
)
+
", "
+
i
+
")"
);
assertEquals
(
1
,
row
);
System
.
out
.
println
(
"insert into "
+
dbName
+
"."
+
tName
+
" values ("
+
ts
+
", "
+
(
100
+
i
)
+
", "
+
i
+
")\t"
+
row
);
}
assertEquals
(
1
,
row
);
}
String
sql
=
"select * from "
+
dbName
+
"."
+
tName
;
String
sql
=
"select * from "
+
dbName
+
"."
+
tName
;
ResultSet
resSet
=
statemen
t
.
executeQuery
(
sql
);
ResultSet
resSet
=
stm
t
.
executeQuery
(
sql
);
int
num
=
0
;
int
num
=
0
;
while
(
resSet
.
next
())
{
while
(
resSet
.
next
())
{
num
++;
num
++;
}
resSet
.
close
();
assertEquals
(
num
,
50
);
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
}
}
resSet
.
close
();
assertEquals
(
num
,
50
);
}
}
@After
@After
public
void
close
()
throws
Exception
{
public
void
close
()
{
statement
.
executeUpdate
(
"drop database "
+
dbName
);
try
{
statement
.
close
();
if
(
connection
!=
null
)
{
connection
.
close
();
Statement
stmt
=
connection
.
createStatement
();
Thread
.
sleep
(
10
);
stmt
.
executeUpdate
(
"drop database "
+
dbName
);
stmt
.
close
();
connection
.
close
();
}
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
}
}
}
}
}
src/connector/jdbc/src/test/java/com/taosdata/jdbc/StableTest.java
浏览文件 @
d2620c99
...
@@ -14,10 +14,10 @@ import static org.junit.Assert.assertEquals;
...
@@ -14,10 +14,10 @@ import static org.junit.Assert.assertEquals;
@FixMethodOrder
(
MethodSorters
.
NAME_ASCENDING
)
@FixMethodOrder
(
MethodSorters
.
NAME_ASCENDING
)
public
class
StableTest
{
public
class
StableTest
{
static
Connection
connection
;
private
static
Connection
connection
;
static
String
dbName
=
"test"
;
private
static
String
dbName
=
"test"
;
static
String
stbName
=
"st"
;
private
static
String
stbName
=
"st"
;
static
String
host
=
"127.0.0.1"
;
private
static
String
host
=
"127.0.0.1"
;
@BeforeClass
@BeforeClass
public
static
void
createDatabase
()
{
public
static
void
createDatabase
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录