@@ -2,13 +2,6 @@ import { JDBCOptions } from "@ibm/mapepire-js/dist/src/types";
2
2
import { getBase , getInstance , loadBase } from "../../../base" ;
3
3
import { formatDescription } from "." ;
4
4
5
- const autoCommitText = `
6
- Specifies the cursor sensitivity to request from the database. The behavior depends on the resultSetType:
7
- - ResultSet.TYPE_FORWARD_ONLY or ResultSet.TYPE_SCROLL_SENSITIVE means that the value of this property
8
- controls what cursor sensitivity the Java program requests from the database.
9
- - ResultSet.TYPE_SCROLL_INSENSITIVE causes this property to be ignored.
10
- ` ;
11
-
12
5
const dbNameText = `
13
6
14
7
Specifies the database to use for a connection to an independent auxiliary storage pool (ASP). When you specify
@@ -129,7 +122,7 @@ export default function getSystemTab(options: JDBCOptions) {
129
122
// )
130
123
. addSelect ( `database name` , `Database name` , [
131
124
{ text : `System Base` , description : `*SYSBAS` , value : `` , selected : options [ "database name" ] === `` } ,
132
- ...Object . values ( connection . aspInfo ) . map ( asp => ( { text : asp , description : asp , value : asp , selected : options [ "database name" ] === asp } ) )
125
+ ...Object . values ( connection . getAllIAsps ( ) ) . map ( asp => ( { text : asp . name , description : asp . name , value : asp . rdbName , selected : options [ "database name" ] === asp . rdbName } ) )
133
126
] , formatDescription ( dbNameText ) )
134
127
. addSelect (
135
128
`decfloat rounding mode` ,
0 commit comments