FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tutorials/core-java/customers.xml at java8_stream · rockoder/tutorials · GitHub
rockoder
/
tutorials
Public
forked from
eugenp/tutorials
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
tutorials
/
core-java
/
customers.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
95 lines (95 loc) · 3.29 KB
Breadcrumbs
tutorials
/
core-java
/
customers.xml
Copy path
File metadata and controls
95 lines (95 loc) · 3.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?
xml
version
=
"
1.0
"
?>
<
webRowSet
xmlns
=
"
http://java.sun.com/xml/ns/jdbc
"
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi:schemaLocation=
"
http://java.sun.com/xml/ns/jdbc http://java.sun.com/xml/ns/jdbc/webrowset.xsd
"
>
<
properties
>
<
command
>SELECT * FROM customers</
command
>
<
concurrency
>1008</
concurrency
>
<
datasource
><
null
/></
datasource
>
<
escape-processing
>true</
escape-processing
>
<
fetch-direction
>1000</
fetch-direction
>
<
fetch-size
>0</
fetch-size
>
<
isolation-level
>2</
isolation-level
>
<
key-columns
>
</
key-columns
>
<
map
>
</
map
>
<
max-field-size
>0</
max-field-size
>
<
max-rows
>0</
max-rows
>
<
query-timeout
>0</
query-timeout
>
<
read-only
>true</
read-only
>
<
rowset-type
>ResultSet.TYPE_SCROLL_INSENSITIVE</
rowset-type
>
<
show-deleted
>false</
show-deleted
>
<
table-name
>customers</
table-name
>
<
url
>jdbc:h2:mem:testdb</
url
>
<
sync-provider
>
<
sync-provider-name
>com.sun.rowset.providers.RIOptimisticProvider</
sync-provider-name
>
<
sync-provider-vendor
>Oracle Corporation</
sync-provider-vendor
>
<
sync-provider-version
>1.0</
sync-provider-version
>
<
sync-provider-grade
>2</
sync-provider-grade
>
<
data-source-lock
>1</
data-source-lock
>
</
sync-provider
>
</
properties
>
<
metadata
>
<
column-count
>2</
column-count
>
<
column-definition
>
<
column-index
>1</
column-index
>
<
auto-increment
>false</
auto-increment
>
<
case-sensitive
>true</
case-sensitive
>
<
currency
>false</
currency
>
<
nullable
>0</
nullable
>
<
signed
>true</
signed
>
<
searchable
>true</
searchable
>
<
column-display-size
>11</
column-display-size
>
<
column-label
>ID</
column-label
>
<
column-name
>ID</
column-name
>
<
schema-name
>PUBLIC</
schema-name
>
<
column-precision
>10</
column-precision
>
<
column-scale
>0</
column-scale
>
<
table-name
>CUSTOMERS</
table-name
>
<
catalog-name
>TESTDB</
catalog-name
>
<
column-type
>4</
column-type
>
<
column-type-name
>INTEGER</
column-type-name
>
</
column-definition
>
<
column-definition
>
<
column-index
>2</
column-index
>
<
auto-increment
>false</
auto-increment
>
<
case-sensitive
>true</
case-sensitive
>
<
currency
>false</
currency
>
<
nullable
>0</
nullable
>
<
signed
>true</
signed
>
<
searchable
>true</
searchable
>
<
column-display-size
>50</
column-display-size
>
<
column-label
>NAME</
column-label
>
<
column-name
>NAME</
column-name
>
<
schema-name
>PUBLIC</
schema-name
>
<
column-precision
>50</
column-precision
>
<
column-scale
>0</
column-scale
>
<
table-name
>CUSTOMERS</
table-name
>
<
catalog-name
>TESTDB</
catalog-name
>
<
column-type
>12</
column-type
>
<
column-type-name
>VARCHAR</
column-type-name
>
</
column-definition
>
</
metadata
>
<
data
>
<
currentRow
>
<
columnValue
>1</
columnValue
>
<
columnValue
>Customer1</
columnValue
>
</
currentRow
>
<
currentRow
>
<
columnValue
>2</
columnValue
>
<
columnValue
>Customer2</
columnValue
>
</
currentRow
>
<
currentRow
>
<
columnValue
>3</
columnValue
>
<
columnValue
>Customer3</
columnValue
>
</
currentRow
>
<
currentRow
>
<
columnValue
>4</
columnValue
>
<
columnValue
>Customer4</
columnValue
>
</
currentRow
>
<
currentRow
>
<
columnValue
>5</
columnValue
>
<
columnValue
>Customer5</
columnValue
>
</
currentRow
>
</
data
>
</
webRowSet
>
Back
|
FazBrowse Home
|
New Git URL