Home > Store

JDBC API Tutorial and Reference: Universal Data Access for the Java 2 Platform, 2nd Edition

Register your product to gain access to bonus material or receive a coupon.

JDBC API Tutorial and Reference: Universal Data Access for the Java 2 Platform, 2nd Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 1999
  • Edition: 2nd
  • Book
  • ISBN-10: 0-201-43328-1
  • ISBN-13: 978-0-201-43328-9

This book provides the definitive description of the JDBC™ API, the technology that enables universal data access for the Java™ programming language. This new edition has been updated and expanded to cover all of the JDBC 2.0 API, including the JDBC 2.0 core API and the JDBC Standard Extension API, the package that facilitates building server-side applications.

Containing in-depth explanations that go beyond the specification, this complete resource pairs a step-by-step tutorial with a comprehensive reference to all of the classes and interfaces.

For those new to Java technology, the book includes an introduction to the Java programming language and to SQL. It builds on this basic knowledge to walk you through creating a JDBC application–from setting up a database and establishing a connection to retrieving values from result sets and using prepared statements. In addition, the authors provide many examples along the way that demonstrate how to execute common tasks. The book proceeds to more advanced topics, focusing on the new features of the JDBC 2.0 API, including scrollable and updatable result sets, batch updates, SQL3 data types, custom mapping, and more.

You will also find an introduction to working with the JDBC metadata API as well as information on rowsets, the technology that makes it possible to handle data sets from any source such as JavaBeans™ components.

From array to XADataSource, a useful alphabetical reference provides concise but complete information on each class and interface in the JDBC API. Each entry includes an overview as well as a list and explanation of the methods and fields.

A chapter on mapping SQL types and types in the Java programming language, a summary of the new JDBC 2.0 features, and a glossary complete this indispensable resource for all database programmers.



0201433281B04062001

Downloads

Source Code

Click below for Source Code related to this title:
Source Code

Sample Content

Table of Contents

PART ONE.

1. Introduction.

What the JDBC 2.0 API Includes.

Conventions Used in This Book.

Fonts to Indicate Function.

Icons to Indicate New Material.

Special Page Designations in the Index.

SQLException Is Implied in Method Explanations.

Some Method Explanations Are Combined.

Contents of the Book.

Part One.

Part Two.

Suggested Order for Reading Chapters.

Where to Find Information by Topic.

Resources on the Web.

What Is the JDBC API.

What Does JDBC Do?

A Base for Other APIs.

The JDBC API Versus ODBC and UDA.

Two-tier and Three-tier Models.

SQL Conformance.

JDBC Products.

Java Software Framework.

JDBC Driver Types.

Obtaining JDBC Drivers.

Java-relational DBMSs.

Other Products.

Java Overview.

Java Is Portable.

Java Is Object-Oriented.

Java Makes It Easy to Write Correct Code.

Java Includes a Library of Classes and Interfaces.

Java Is Extensible.

Java Is Secure.

Java Performs Well.

Java Scales Well.

Java Is Multithreaded.

Relational Database Overview.

Integrity Rules.

SELECT Statements.

WHERE Clauses.

Joins.

Common SQL Commands.

Result Sets and Cursors.

Transactions.

Stored Procedures.

Metadata.

2. Basic Tutorial.

Getting Started.

Setting Up a Database.

Establishing a Connection.

Loading Drivers.

Making the Connection.

Setting Up Tables.

Creating a Table.

Creating JDBC Statements.

Executing Statements.

Entering Data into a Table.

Getting Data from a Table.

Retrieving Values from Result Sets.

Using the Method next.

Using the getXXX Methods.

Using the Method getString.

Updating Tables.

Milestone: The Basics of JDBC.

Using Prepared Statements.

When to Use a PreparedStatement Object.

Creating a PreparedStatement Object.

Supplying Values for PreparedStatement Parameters.

Using a Loop to Set Values.

Return Values for the Method executeUpdate.

Using Joins.

Using Transactions.

Disabling Auto-commit Mode.

Committing a Transaction.

Using Transactions to Preserve Data Integrity.

When to Roll Back a Transaction.

Stored Procedures.

SQL Statements for Creating a Stored Procedure.

Calling a Stored Procedure Using the JDBC API.

Creating Complete JDBC Applications.

Putting Code in a Class Definition.

Importing Classes to Make Them Visible.

Using the main Method.

Using try and catch Blocks.

Retrieving Exceptions.

Retrieving Warnings.

Running the Sample Applications.

Sample Code.

Sample Code 1 and 2.

Sample Code 3 and 4.

Sample Code 5.

Sample Code 6.

Creating an Applet from an Application.

Writing Applet Code.

Running an Applet.

Sample Code 7 and 8.

Stored Procedures Using SQLJ and the JDBC API.

Creating a Stored Procedure.

Installing a Stored Procedure.

Declaring a Stored Procedure in SQL.

3. Advanced Tutorial.

Getting Set Up to Use the JDBC 2.0 API.

Setting Up to Run Code with New Features.

Using Code Examples.

Moving the Cursor in Scrollable Result Sets.

Creating a Scrollable Result Set.

Moving the Cursor Forward and Backward.

Moving the Cursor to a Designated Row.

Getting the Cursor Position.

Making Updates to Updatable Result Sets.

Creating an Updatable Result Set.

Updating a Result Set Programmatically.

Inserting and Deleting Rows Programmatically.

Code Sample for Inserting a Row.

Deleting a Row Programmatically.

Seeing Changes in Result Sets.

Getting the Most Recent Data.

Making Batch Updates.

Using Statement Objects for Batch Updates.

Batch Update Exceptions.

Sample Code for Batch Update.

SQL3 Data Types.

DISTINCT Type.

Using SQL3 Data Types.

Blob, Clob, and Array Objects.

Creating an SQL Structured Type.

Creating a DISTINCT Type.

Using References to Structured Types.

Sample Code for Creating an SQL REF.

Using SQL3 Types as Column Values.

Inserting SQL3 Types into a Table.

Using Custom Mapping.

Implementing SQLData.

Using a Connection's Type Map.

Using Your Own Type Map.

Using Data Sources.

Using a DataSource Object to Get a Connection.

Deploying a Basic DataSource Object.

Deploying Other DataSource Implementations.

Getting and Using a Pooled Connection.

Deployment for Distributed Transactions.

Using Connections for Distributed Transactions.

4. MetaData Tutorial.

Getting Information about Result Set Columns.

Using the Method getColumnCount.

Sample Code 9.

Using Other ResultSetMetaData Methods.

Getting Column Type Information.

Sample Code 10 and 11.

Sample Code 12.

Getting Other Information.

Using New JDBC 2.0 ResultSetMetaData Features.

Getting Other Information about a Result Set.

Getting Information about a Database or Database System.

Categories of DatabaseMetaData Methods.

Methods that Return a String.

Methods that Return an int.

Methods that Return a boolean.

Methods that Return a ResultSet Object.

Sample Code 13.

Getting Information about DBMS Data Types.

Sample Code 14.

Getting Information about Primary and Foreign Keys.

Sample Code 15.

Sample Code 16.

New JDBC 2.0 Core Methods.

Generic Applications.

Sample Code 17 and 18.

Sample Code 19.

5. Rowset Tutorial.

Types and Uses of Rowsets.

Using a Rowset.

Creating a Rowset and Setting Properties.

Rowsets and Event Notification.

Obtaining a Scrollable and Updatable Rowset.

Using a Rowset for Scrolling and Updating.

Updating a Rowset.

An EJB Example.

A Distributed Application.

Differences in Rowsets.

EJB and Distributed Transactions.

A Stateless SessionBean Object.

Overview of an EJB Application.

The Remote Interface.

The Home Interface.

The Client Class.

The Enterprise Bean.

PART TWO.

6. Array.

Array Overview.

Creating an Array Object.

Getting Base Type Information.

Materializing Array Data.

Four Versions of the Method getArray.

Four Versions of the Method getResultSet.

Using Array Methods.

Storing Array Objects.

Array Interface Definition.

Array Methods.

7. BatchUpdateException.

BatchUpdateException Overview.

What a BatchUpdateException Object Contains.

Retrieving BatchUpdateException Information.

BatchUpdateException Class Definition.

BatchUpdateException Constructors.

BatchUpdateException Methods.

Inherited Methods.

Methods Defined in BatchUpdateException.

8. Blob.

Blob Overview.

Creating a Blob Object.

Materializing Blob Data.

Storing a Blob Object.

Blob Interface Definition.

Blob Methods.

9. CallableStatement.

CallableStatement Overview.

Creating a CallableStatement Object.

IN Parameters.

Making Batch Updates.

OUT Parameters.

Numbering of Parameters.

INOUT Parameters.

Retrieve OUT Parameters after Results.

Retrieving NULL Values as OUT Parameters.

CallableStatement Definition.

CallableStatement Methods.

Inherited Methods.

Methods Defined in CallableStatement.

10. Clob.

Clob Overview.

Creating a Clob Object.

Materializing Clob Data.

Storing a Clob Object.

Clob Interface Definition.

Clob Methods.

11. Connection.

Connection Overview.

Opening a Connection.

URLs in General Use.

JDBC URLs.

The odbc Subprotocol.

Registering Subprotocols.

Sending SQL Statements.

Transactions.

Transaction Isolation Levels.

Freeing DBMS Resources.

Using Type Maps.

Connection Interface Definition.

Connection Methods.

Connection Fields.

12. ConnectionEvent.

ConnectionEvent Overview.

ConnectionEvent Definition.

ConnectionEvent Constructors.

ConnectionEvent Methods.

Methods Inherited from java.util.EventObject.

Methods Defined in javax.sql.ConnectionEvent.

13. ConnectionEventListener.

ConnectionEventListener Overview.

Methods for Event Notification.

Registering a ConnectionEventListener Object.

ConnectionEventListener Definition.

ConnectionEventListener Methods.

14. ConnectionPoolDataSource.

ConnectionPoolDataSource Overview.

Connection vs. PooledConnection Objects.

ConnectionPoolDataSource Definition.

ConnectionPoolDataSource Methods.

15. DatabaseMetaData.

DatabaseMetaData Overview.

Creating a DatabaseMetaData Object.

ResultSet Objects as Return Values.

String Patterns as Arguments.

Pseudo Columns.

New JDBC 2.0 Core API Features.

Getting Advanced Type Information.

DatabaseMetaData Interface Definition.

DatabaseMetaData Methods.

DatabaseMetaData Fields.

16. DataSource.

DataSource Overview.

Properties.

Using JNDI.

Creating and Registering a DataSource Object.

Connecting to a Data Source.

DataSource Implementations.

Logging and Tracing.

Advantages of Using JNDI.

DataSource Definition.

DataSource Methods.

17. DataTruncation.

DataTruncation Overview.

Data Truncation with No Warning or Exception.

Data Truncation on Reads.

Data Truncation on Writes.

What a DataTruncation Object Contains.

Retrieving DataTruncation Information.

DataTruncation Class Definition.

DataTruncation Constructor.

DataTruncation Methods.

Inherited Methods.

Methods Defined in DataTruncation.

18. Date.

Date Overview.

Creating a Date Object.

Deprecated Methods.

Retrieving a Date Object.

Advanced Features.

Date Class Definition.

Date Constructors.

Date Methods.

Inherited Methods.

Methods Defined in Date.

19. Distinct Types.

Distinct Types Overview.

Creating a Distinct Type Object.

Storing Distinct Objects.

Using Distinct Data Types.

Custom Mapping of Distinct Types.

20. Driver.

Driver Overview.

Loading and Registering a Driver.

JDBC Implementation Alternatives.

Driver Interface Definition.

Driver Methods.

21. DriverManager.

DriverManager Overview.

Keeping Track of Available Drivers.

Establishing a Connection.

DriverManager Methods Are Static.

DriverManager Class Definition.

DriverManager Methods.

22. DriverPropertyInfo.

DriverPropertyInfo Overview.

Creating a DriverPropertyInfo Object.

Getting and Setting Fields.

DriverPropertyInfo Class Definition.

DriverPropertyInfo Constructor.

DriverPropertyInfo Fields.

23. PooledConnection.

PooledConnection Overview.

Application Code for Connection Pooling.

How Connection Pooling Works.

The Life Cycle of a PooledConnection Object.

PooledConnection Definition.

PooledConnection Methods.

24. PreparedStatement.

PreparedStatement Overview.

Creating PreparedStatement Objects.

Passing IN Parameters.

Data Type Conformance on IN Parameters.

Using setObject.

Sending JDBC NULL as an IN parameter.

Sending Very Large IN Parameters.

Using PreparedStatement Objects in Batch Updates.

PreparedStatement Interface Definition.

PreparedStatement Methods.

Methods Inherited from Statement.

Methods Defined in PreparedStatement.

25. Ref.

Ref Overview.

Creating an SQL Reference.

Creating a Ref Object.

Storing a Ref Object.

Dereferencing a Ref Object.

Ref Interface Definition.

Ref Methods.

26. ResultSet.

ResultSet Overview.

Rows and Columns.

Cursors.

Cursor Movement Examples.

Determining the Number of Rows in a Result Set.

Retrieving Column Values.

Which getXXX Method to Use.

Types of Result Sets.

Concurrency Types.

Providing Performance Hints.

Creating Different Types of Result Sets.

Using a Prepared Statement to Create Result Sets.

Requesting Features That Are Not Supported.

Using updateXXX Methods.

Deleting a Row.

Inserting Rows.

Positioned Updates.

Queries That Produce Updatable Result Sets.

What Is Visible to Transactions.

Visibility of Changes Made by Others.

Visibility of a Result Set's Own Changes.

Detecting Changes.

Refetching a Row.

Using Streams for Very Large Row Values.

NULL Result Values.

Optional or Multiple Result Sets.

Closing a ResultSet Object.

JDBC Compliance.

ResultSet Interface Definition.

ResultSet Methods.

ResultSet Fields.

27. ResultSetMetaData.

ResultSetMetaData Overview.

Creating a ResultSetMetaData Object.

Using ResultSetMetaData.

ResultSetMetaData Interface Definition.

ResultSetMetaData Methods.

ResultSetMetaData Fields.

28. RowSet.

RowSet Overview.

The Event Model for Rowsets.

Properties for a Rowset.

Setting Parameters.

Traversing a RowSet Object.

Executing a Command.

Using a RowSet Object's Metadata.

An Example Implementation.

Overview of CachedRowSet.

Uses for a CachedRowSet Object.

Sample CachedRowSet Definition.

Creating a CachedRowSet Object.

Populating a CachedRowSet Object.

Accessing Data.

Modifying Data.

Customizing Readers and Writers.

Other Methods.

Other Possible Implementations.

JDBCRowSet Class.

The WebRowSet Class.

RowSet Definition.

RowSet Methods.

Methods Inherited from ResultSet.

Methods Defined in RowSet.

RowSet Fields.

29. RowSetEvent.

RowSetEvent Overview.

RowSet Events.

Creating a RowSetEvent Object.

RowSetEvent Definition.

RowSetEvent Constructor.

RowSetEvent Methods.

Inherited Methods.

30. RowSetInternal.

RowSetInternal Overview.

RowSetInternal Definition.

RowSetInternal Methods.

31. RowSetListener.

RowSetListener Overview.

Registering and Deregistering a Listener.

Using RowSetListener Methods.

RowSetListener Definition.

RowSetListener Methods.

32. RowSetMetaData.

RowSetMetaData Overview.

RowSetMetaData Definition.

RowSetMetaData Methods.

Methods Inherited from ResultSetMetaData.

Methods Defined in RowSetMetaData.

RowSetMetaData Fields.

33. RowSetReader.

RowSetReader Overview.

The Reader/Writer Framework.

Reading Data for a Disconnected Rowset.

RowSetReader Definition.

RowSetReader Methods.

34. RowSetWriter.

RowSetWriter Overview.

RowSetWriter Definition.

RowSetWriter Methods.

35. SQLData.

SQLData Overview.

Creating a Custom Mapping.

How SQLData Retrieves an Object.

How SQLData Is Used to Store an Object.

SQLData Interface Definition.

SQLData Methods.

36. SQLException.

SQLException Overview.

What an SQLException Object Contains.

Retrieving SQLException Information.

What an SQLException Means.

SQLException Class Definition.

SQLException Constructors.

SQLException Methods.

Inherited Methods.

Methods Defined in SQLException.

37. SQLInput.

SQLInput Overview.

Creating an SQLInput Object.

Using readXXX Methods.

SQLInput Interface Definition.

SQLInput Methods.

38. SQLOutput.

SQLOutput Overview.

SQLOutput Interface Definition.

SQLOutput Methods.

39. SQLWarning.

SQLWarning Overview.

What an SQLWarning Object Contains.

Retrieving SQLWarning Information.

SQLWarning Class Definition.

SQLWarning Constructors.

SQLWarning Methods.

Inherited Methods.

Methods Defined in SQLWarning.

40. Statement.

Statement Overview.

Creating Statement Objects.

Executing Statements Using Statement Objects.

Statement Completion.

Closing Statements.

SQL Escape Syntax in Statements.

Sending Batch Updates.

Giving Performance Hints.

Executing Special Kinds of Statements.

Statement Interface Definition.

Statement Methods.

41. Struct.

Struct Overview.

Creating an SQL Structured Type.

Storing Referenceable Instances of a Structured Type.

Creating a Struct Object.

Mapping SQL Inheritance.

Ordering of Attributes.

Storing a Struct Object.

Struct Interface Definition.

Struct Methods.

42. Time.

Time Overview.

Creating a Time Object.

Deprecated Methods.

Retrieving a Time Object.

Advanced Features.

Time Class Definition.

Time Constructors.

Time Methods.

43. Timestamp.

Timestamp Overview.

Creating a Timestamp Object.

Retrieving a Timestamp Object.

Advanced Features.

Timestamp Class Definition.

Timestamp Constructors.

Timestamp Methods.

44. Types.

Overview of Class Types.

Using the Constants in Class Types.

Using the Constant OTHER.

JDBC Types Added in the JDBC 2.0 Core API.

Types Class Definition.

45. XAConnection.

XAConnection Overview.

Application Code in Distributed Transactions.

Distributed Transaction Requirements.

Creating an XAConnection Object.

What an XAResource Object Does.

How the Two-phase Commit Protocol Works.

Using an XAResource Object to Commit.

The XAResource Interface.

Steps in a Distributed Transaction.

Distributed Transactions and EJB.

XAConnection Definition.

XAConnection Methods.

Methods Inherited from javax.sql.PooledConnection.

Methods Defined in XAConnection.

46. XADataSource.

XADataSource Overview.

Obtaining an XADataSource Object.

XADataSource Objects and Resource Managers.

XADataSource Definition.

XADataSource Methods.

47. Mapping SQL and Java Types.

Mapping Overview.

Mapping SQL Types to Java Types.

Basic JDBC Types.

CHAR, VARCHAR, LONGVARCHAR.

BINARY, VARBINARY, LONGVARBINARY.

BIT.

TINYINT.

SMALLINT.

INTEGER.

BIGINT.

REAL.

DOUBLE.

FLOAT.

DECIMAL and NUMERIC.

DATE, TIME, and TIMESTAMP.

Advanced JDBC Data Types.

BLOB.

CLOB.

ARRAY.

DISTINCT.

STRUCT.

REF.

JAVA_OBJECT.

Examples of Mapping.

Simple SQL Statement.

SQL Statement with IN Parameters.

SQL Statement with INOUT Parameters.

Custom Mapping.

Dynamic Data Access.

Storing Java Objects in a Database.

Tables for Type Mapping.

JDBC Types Mapped to Java Types.

Java Types Mapped to JDBC Types.

JDBC Types Mapped to Java Object Types.

Java Object Types Mapped to JDBC Types.

Conversions by setObject.

Conversions by ResultSet.getXXX Methods.

Types Mapped to Database-specific SQL Types.

Appendix A: For Driver Writers.

Requirements for All Drivers.

Implement Methods in the Interfaces.

Implement a Static Initializer.

Support Extensions to SQLÜ92 Entry Level.

Support Scalar Functions.

Provide Locks for Positioned Updates and Deletes.

Support Multithreading.

Throw Exceptions for Truncated Input Parameters.

Use Default Behaviors for SQL3 Data Types.

Permitted Variants.

When Functionality Is Not Supported.

Variation in Fundamental Properties.

Adding Functionality.

Security Responsibilities of Drivers.

Check Shared TCP Connections.

Check All Local File Access.

Assume the Worst.

Use SQLException for Exceptions.

Suggested Implementations.

Prefetch Rows.

Provide ñFinalizeî Methods for Applets.

Avoid Implementation-dependent States.

Appendix B: Summary of Changes.

Overview of JDBC 2.0 Core API Changes.

Summary of New Functionality.

Scrollable Result Sets.

Batch Updates.

Programmatic Updates.

Other New Features.

Support for Advanced Data Types.

What Are the SQL3 Data Types?

Summary of Support for the SQL3 Data Types.

Mapping of the New SQL3 Types.

SQL Locators.

Support for Storing Java Objects.

Complete List of Core API Changes.

What Did Not Change.

Additions to Existing Interfaces and Classes.

Deprecated Methods and Constructors.

New Interfaces, Classes, and Exceptions.

JDBC Standard Extension Features.

JNDI.

Connection Pooling.

Support for Distributed Transactions.

Rowsets.

Complete List of Extension API.

Post JDBC 1.0 API Changes.

Numeric to Bignum to BigDecimal.

AutoClose Mode Dropped.

Early Design Decisions.

ResultSet.getXXX Methods.

PreparedStatement.setXXX Methods.

CallableStatement.registerOutParameter Method.

Support for Large OUT Parameters.

isNull versus wasNull.

Java Type Names or JDBC Type Names.

Where to Send Suggestions.

Glossary.
Index. 0201433281T04062001

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020