Save 
Join IIUG
 for   
 

Informix News
9 Apr 12 - Mastering Data Management - Upping the Informix Ante: Advanced Data Tools... Read
22 Mar 12 - developerWorks - Optimizing Informix database access... Read
14 Mar 12 - BernieSpang.com - International Informix User Group set to meet in San Diego... Read
1 Mar 12 - IBM Data Management - IIUG Heads West for 2012 - Get ready for sun and sand in San Diego... Read
1 Mar 12 - IBM Data Management - Running Informix on Solid-State Drives.Speed Up Database Access... Read
26 Feb 12 - BernieSpan.com - Better results, lower cost for a broad set of new IBM clients and partners... Read
24 Feb 12 - developerWorks - Informix Warehouse Accelerator: Continuous Acceleration during Data Refresh... Read
6 Feb 12 - PRLOG - Informix port delivers unlimited database scalability for popular SaaS application ... Read
2 Feb 12 - developerWorks - Loading data with the IBM Informix TimeSeries Plug-in for Data Studio... Read
1 Feb 12 - developerWorks - 100 Tech Tips, #47: Log-in to Fix Central... Read
13 Jan 12 - MC Press online - Informix Dynamic Server Entices New Users with Free Production Edition ... Read
11 Jan 12 - Computerworld - Ecologic Analytics and Landis+Gyr -- Suitors Decide to Tie the Knot... Read
9 Jan 12 - planetIDS.com - DNS impact on Informix / Impacto do DNS no Informix... Read
8 Sep 11 - TMCnet.com - IBM Offers Database Solution to Enable Smart Meter Data Capture... Read
1 Aug 11 - IBM Data Management Magazine - IIUG user view: Happy 10th anniversary to IBM and Informix... Read
8 Jul 11 - Database Trends and Applications - Managing Time Series Data with Informix... Read
31 May 11 - Smart Grid - The meter data management pitfall utilities are overlooking... Read
27 May 11 - IBM Data Management Magazine - IIUG user view: Big data, big time ( Series data, warehouse acceleration, and 4GLs )... Read
16 May 11 - Business Wire - HiT Software Announces DBMoto for Enterprise Integration, Adds Informix. Log-based Change Data Capture... Read
21 Mar 11 - Yahoo! Finance - IBM and Cable&Wireless Worldwide Announce UK Smart Energy Cloud... Read
14 Mar 11 - MarketWatch - Fuzzy Logix and IBM Unveil In-Database Analytics for IBM Informix... Read
11 Mar 11 - InvestorPlace - It's Time to Give IBM Props: How many tech stocks are up 53% since the dot-com boom?... Read
9 Mar 11 - DBTA - Database Administration and the Goal of Diminishing Downtime... Read
2 Feb 11 - DBTAs - Informix 11.7 Flexible Grid Provides a Different Way of Looking at Database Servers... Read
27 Jan 11 - exactsolutions - Exact to Add Informix Support to Database Replay, SQL Monitoring Solutions... Read
25 Jan 11 - PR Newswire - Bank of China in the UK Works With IBM to Become a Smarter, Greener Bank... Read
12 Oct 10 - Database Trends and Applications - Informix 11.7: The Beginning of the Next Decade of IBM Informix... Read
20 Sep 10 - planetIDS.com - ITG analyst paper: Cost/Benefit case for IBM Informix as compared to Microsoft SQL Server... Read
20 Jul 10 - IBM Announcements - IBM Informix Choice Edition V11.50 helps deploy low-cost scalable and reliable solutions for Apple Macintosh and Microsoft Windows... Read
20 Jul 10 - IBM Announcements - Software withdrawal: Elite Support for Informix Ultimate-C Edition... Read
24 May 10 - eWeek Europe - IBM Supplies Database Tech For EU Smart Grid... Read
23 May 10 - SiliconIndia - IBM's smart metering system allows wise use of energy... Read
21 May 10 - CNET - IBM to help people monitor energy use... Read
20 May 10 - ebiz - IBM Teams With Hildebrand To Bring Smart Metering To Homes Across Britain... Read
19 May 10 - The New Blog Times - Misurare il consumo energetico: DEHEMS è pronto... Read
19 May 10 - ZDNet - IBM software in your home? Pact enables five-city smart meter pilot in Europe... Read
17 March 10 - ZDNet (blog) David Morgenstern - TCO: New research finds Macs in the enterprise easier, cheaper to manage than... Read
17 March 2010 - Virtualization Review - ...key components of Big Blue's platform to the commercial cloud such as its WebSphere suite of application ser vers and its DB2 and Informix databases... Read
10 February 2010 - The Wall Street Journal - International Business Machines is expanding an initiative to win over students and professors on its products. How do they lure the college crowd?... Read


End of Support Dates

IIUG on Facebook IIUG on Twitter


[ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

Classics Forum

Compile error

Posted By: Sharp, Kirk (USMS)
Date: Monday, 28 November 2005, at 5:25 p.m.

While attempting to compile the following code, I get the following error message for each 'System.out.println...Data...' line of code:

...<location>...java:<line#>: cannot resolve symbol
[javac] symbol : variable Data
[javac] System.out.println(" " + Data.format(colName, 19) + " "
+ Data.format(colType, 13) + " ");

Any ideas as to what I'm doing wrong (refer to lines in bold print)?

Thanks
Kirk

import java.lang.*;
import java.sql.*;

class DtInfo
{
public static void main(String argv[])
{
try
{
Db db = new Db(argv);

System.out.println();
System.out.println(
"THIS SAMPLE SHOWS HOW TO GET INFO ABOUT DATA TYPES.");

// connect to the 'sample' database
db.connect();

// Get information about the Data type
infoGet(db.con); db.con.commit(); // disconnect from the 'sample' database
db.disconnect();
}
catch (Exception e)
{
JdbcException jdbcExc = new JdbcException(e);
jdbcExc.handle();
}
} // main

static void infoGet(Connection con)
{
try
{
System.out.println();
System.out.println(
"----------------------------------------------------------\n" +
"USE THE JAVA APIs:\n" +
" Connection.getMetaData()\n" +
" ResultSet.getTypeInfo()\n" +
" ResultSetMetaData.getMetaData()\n" +
"TO GET INFO ABOUT DATA TYPES AND\n" +
"TO RETRIEVE THE AVAILABLE INFO IN THE RESULT SET.");

DatabaseMetaData dbMetaData = con.getMetaData();

// Get a description of all the standard SQL types supported by
// this database
ResultSet rs = dbMetaData.getTypeInfo();

// Retrieve the number, type and properties of the resultset's columns
ResultSetMetaData rsMetaData = rs.getMetaData();

// Get the number of columns in the ResultSet
int colCount = rsMetaData.getColumnCount();
System.out.println();
System.out.println(
" Number of columns in the ResultSet = " + colCount);

// Retrieve and display the column's name along with its type
// and precision in the ResultSet
System.out.println();
System.out.println(" A LIST OF ALL COLUMNS IN THE RESULT SET:\n" +
" Column Name Column Type\n" +
" ------------------- -----------");

String colName, colType;
for (int i = 1 ; i <= colCount ; i++)
{
colName = rsMetaData.getColumnName(i);
colType = rsMetaData.getColumnTypeName(i);
System.out.println(
" " + Data.format(colName, 19) +
" " + Data.format(colType, 13) + " ");
}

System.out.println();
System.out.println(
" HERE ARE SOME OF THE COLUMNS' INFO IN THE TABLE ABOVE:\n"+
" TYPE_NAME DATA_ COLUMN NULL- CASE_\n"+
" TYPE _SIZE ABLE SENSITIVE\n"+
" (int) \n"+
" ------------------------- ----- ---------- ----- ---------");

String typeName;
int dataType;
Integer columnSize;
boolean nullable;
boolean caseSensitive;

// Retrieve and display the columns' information in the table
while (rs.next())
{
typeName = rs.getString(1);
dataType = rs.getInt(2);
if (rs.getInt(7) == 1)
{
nullable = true;
}
else
{
nullable = false;
}
if (rs.getInt(8) == 1)
{
caseSensitive = true;
}
else
{
caseSensitive = false;
}
if (rs.getString(3) != null)
{
columnSize = Integer.valueOf(rs.getString(3));
System.out.println(
" " + Data.format(typeName, 25) +
" " + Data.format(dataType, 5) +
" " + Data.format(columnSize, 10) +
" " + Data.format(String.valueOf(nullable), 5) +
" " + Data.format(String.valueOf(caseSensitive), 10));
}
else
// for the distinct data type, column size does not apply
{
System.out.println(
" " + Data.format(typeName, 25) +
" " + Data.format(dataType, 5) +
" n/a" +
" " + Data.format(String.valueOf(nullable), 5) +
" " + Data.format(String.valueOf(caseSensitive), 10));
}
}
// close the result set
rs.close();
}
catch (Exception e)
{
JdbcException jdbcExc = new JdbcException(e);
jdbcExc.handle();
}
}
} // DtInfo


Thanks

[ Post Response ] [ Return to Index ] [ Read Prev Msg ] [ Read Next Msg ]

Classics Forum is maintained by Administrator with WebBBS 5.12.