DB2 Universal Database: SSI-Hub Texas A&M
DB2 Universal Database: SSI-Hub Texas A&M
DB2 Universal Database: SSI-Hub Texas A&M
http://www-306.ibm.com/software/data/db2/udb/about.html
Command Editor
Development Center
Control Center
Health Center
Configuration Assistant
T
R
E
E
S Detailed information about the item selected. If you select
T them you can further modify them.
R
U
C
T
U
R
E
More Wizard like help for the item selected.
Result Window
After typing the query press
the green arrow sign, to run
the query.
2. This brings up an
interactive window
through which writing
queries becomes
easier.
while(rs.next())
{
CalendarEvent task =
newCalendarEvent(Integer.parseInt(rs.getString(1)),rs.getString(2),java.sql.Date.valueOf(rs.getString(3))
rs.getString(4),rs.getString(5),rs.getString(6));
events.addElement(task);
}
rs.close();
getRecords.close();
connection.close();
}
catch(Exception e)
{
System.out.println(e.toString());
}
}
}
TEXAS A&M-SSI HUB
Glossary
Database: A relational database presents data as Index : An index is a data access aid that can be
created on a table. It is an ordered set of pointers to
a collection of tables. The data in each table is
rows in a table. Each index is based on the values
logically related, and relationships can be defined
of data in one or more columns in a table. An index
between tables. Data can be viewed and
is an object that is separate from the data in the
manipulated based on mathematical principles and
table.
operations called relations (such as, INSERT,
SELECT, and UPDATE).
Instance: An instance is a logical database
Tables: A relational database presents data as a manager environment where you catalog databases
collection of tables. A table consists of data logically and set configuration parameters. Multiple
arranged in columns and rows (generally known as instances can be created on the same physical
records) server providing a unique database server
environment for each instance.
To compile this tutorial, help was taken from the tutorial provided by
the IBM website.