The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBD::Informix::TechSupport - Obtaining Technical Support for DBD::Informix

SYNOPSIS

use DBD::Informix::TechSupport;

DESCRIPTION

This document describes how to obtain technical support for Informix Database Driver for Perl Version 0.97005 (2000-02-10) (which is also known as DBD::Informix). It also describes how to use the Perl module to report information to any of technical support channels.

INFORMIX TECHNICAL SUPPORT

Informix Database Driver for Perl Version 0.97005 (2000-02-10) is a fully supported product of Informix Software, Inc. provided that you are using a supported configuration.

Openline maintenance contracts, which include telephone technical support, can be purchased for the product. For more details and pricing information, contact your Informix sales representative or maintenance representative. If you are a customer with a valid Openline maintenance contract, you can email your technical support issues to tsmail@informix.com.

OTHER SUPPORT

If you are a customer who does not purchase an Informix Openline maintenance contract, you can submit questions by subscribing to the dbi-users@isc.org mailing list (use http//www.isc.org/dbi-lists.html to sign up), and email your questions to dbi-users@isc.org.

CONFIGURATIONS SUPPORTED BY INFORMIX

Informix Technical Support will only support Informix Database Driver for Perl Version 0.97005 (2000-02-10) if you are using certain supported versions of ESQL/C or CSDK:

  • ESQL/C Version 5.1x

  • ESQL/C Version 7.2x

  • ClientSDK Version 2.30 (ESQL/C 9.21) or later

You may use Perl Version 5.004_04, but you should be using Perl Version 5.005_03 or a later, stable version of Perl. Note that Perl Version 5.005_50 and above are unstable development versions of Perl.

You must be using DBI Version 1.13 or a later.

If you are using some other version of ESQL/C, or some other version of Perl or DBI, you must use the other support channels documented above.

OTHER CONFIGURATIONS WHICH PROBABLY WORK

Informix Database Driver for Perl Version 0.97005 (2000-02-10) is believed to work with all other versions of ESQL/C and ClientSDK from ESQL/C 5.00.UC1 upwards. However, you may run into problems with the handling of shared libraries if you use other versions of ESQL/C.

It is known that earlier versions of ESQL/C will not work; if you cannot upgrade from ESQL/C 4.x, then consider using DBD::Informix4, also obtainable from CPAN.

At various times, DBD::Informix has been tested with both OnLine and SE at most versions from 5.00 upwards.

DBD::Informix will probably work with most versions of Perl from 5.004 upwards, but you should aim to use 5.005_03 until there is a later stable version (such as 5.6) available.

DBD::Informix will probably work with most versions of DBI from 1.02 upwards, but there is no reason not to use DBI Version 1.13 or some later version.

USING THE DBD::Informix::TechSupport Module

The script InformixTechSupport illustrates how to use the various functions described here.

Using bug_report

The Notes/bug.report file describes in detail the various classes of bug report (A, B, C or D). You specify the bug class and optionally (for a class D bug) a list of tests to run.

        bug_report("A");

        bug_report("D", @test_list);

You should trap both the standard output and standard error output into a file and use that as the basis of your bug report. You will also need to describe the symptoms of any detailed failure you have if the tests pass. Although you would often use the distributed tests, you can substitute your own test provided you include the source code with the bug report and it is cribbed from one the distributed tests.

The bug_report function reconfigures DBD::Informix (all classes), then builds it (classes B, C, D) and tests it (classes C, D).

Using it_works

This generates the information needed for a report that you have managed to get Informix Database Driver for Perl Version 0.97005 (2000-02-10) working.

        it_works;

Using print_versions

This function is called with a string containing the names of the items for which you need the version.

        print_versions("Perl DBI DBD::Informix ESQL/C Licence");

The valid items are:

  • Perl

  • DBI

  • DBD::Informix

  • ESQL/C

  • Licence

Using set_licence_number

By default, the licence number associated with the product will is ACN#J334912, and this does not have any support. If you buy support for Informix Database Driver for Perl Version 0.97005 (2000-02-10), then you will be given a new licence number and you should install that number in the software so that bug reports will contain a valid licence number. Normally, you'd do this with the InformixTechSupport script, but that uses the set_licence_number method. The set_licence_number method can be used by a suitably privileged user to record this new number:

        set_licence_number($new_number);

AUTHOR

Jonathan Leffler