-- Licensed to the Apache Software Foundation (ASF) under one or more -- contributor license agreements. See the NOTICE file distributed with -- this work for additional information regarding copyright ownership. -- The ASF licenses this file to You under the Apache License, Version 2.0 -- (the "License"); you may not use this file except in compliance with -- the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ### JBoss Specific Database SQLs CREATE MEMORY TABLE LOAN(LOAN_ID INTEGER NOT NULL PRIMARY KEY,CUSTOMER_NAME VARCHAR(45) NOT NULL,LOAN DOUBLE NOT NULL,ADDRESS VARCHAR(100),ANNUAL_SALARY DOUBLE NOT NULL,LOAN_STATUS INTEGER) ## JBoss Specific Data INSERT INTO LOAN VALUES(1,'Lasantha Ranaweera',900000,'Maharagama',115000,3) INSERT INTO LOAN VALUES(2,'Kalpa Basnayake',750000,'Kadawatha',950000,0) INSERT INTO LOAN VALUES(3,'Sujeewa Samaraweera',1000000,'Rajagiriya',115000,1) INSERT INTO LOAN VALUES(4,'Miyuru Rathnayake',1200000,'Koswatta',115000,1) INSERT INTO LOAN VALUES(5,'Shashike Disanayake',900000,'Kottawa',85000,0) ## Geronimo Specific Database SQLs CREATE TABLE LOAN(LOAN_ID INTEGER NOT NULL PRIMARY KEY,CUSTOMER_NAME VARCHAR(45) NOT NULL,LOAN DOUBLE NOT NULL,ADDRESS VARCHAR(100),ANNUAL_SALARY DOUBLE NOT NULL,LOAN_STATUS INTEGER); INSERT INTO LOAN VALUES(1,'Lasantha Ranaweera',900000,'Maharagama',115000,3); INSERT INTO LOAN VALUES(2,'Kalpa Basnayake',750000,'Kadawatha',950000,0); INSERT INTO LOAN VALUES(3,'Sujeewa Samaraweera',1000000,'Rajagiriya',115000,1); INSERT INTO LOAN VALUES(4,'Miyuru Rathnayake',1200000,'Koswatta',115000,1); INSERT INTO LOAN VALUES(5,'Shashike Disanayake',900000,'Kottawa',85000,0);