~statik/ubuntu/maverick/erlang/erlang-merge-testing

« back to all changes in this revision

Viewing changes to lib/odbc/doc/src/introduction.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-05-01 10:14:38 UTC
  • mfrom: (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090501101438-6qlr6rsdxgyzrg2z
Tags: 1:13.b-dfsg-2
* Cleaned up patches: removed unneeded patch which helped to support
  different SCTP library versions, made sure that changes for m68k
  architecture applied only when building on this architecture.
* Removed duplicated information from binary packages descriptions.
* Don't require libsctp-dev build-dependency on solaris-i386 architecture
  which allows to build Erlang on Nexenta (thanks to Tim Spriggs for
  the suggestion).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="latin1" ?>
 
2
<!DOCTYPE chapter SYSTEM "chapter.dtd">
 
3
 
 
4
<chapter>
 
5
  <header>
 
6
    <copyright>
 
7
      <year>2002</year><year>2009</year>
 
8
      <holder>Ericsson AB. All Rights Reserved.</holder>
 
9
    </copyright>
 
10
    <legalnotice>
 
11
      The contents of this file are subject to the Erlang Public License,
 
12
      Version 1.1, (the "License"); you may not use this file except in
 
13
      compliance with the License. You should have received a copy of the
 
14
      Erlang Public License along with this software. If not, it can be
 
15
      retrieved online at http://www.erlang.org/.
 
16
    
 
17
      Software distributed under the License is distributed on an "AS IS"
 
18
      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
19
      the License for the specific language governing rights and limitations
 
20
      under the License.
 
21
    
 
22
    </legalnotice>
 
23
 
 
24
    <title>Introduction</title>
 
25
    <prepared>Ingela Anderton</prepared>
 
26
    <responsible></responsible>
 
27
    <docno></docno>
 
28
    <approved></approved>
 
29
    <checked></checked>
 
30
    <date>2002-09-17</date>
 
31
    <rev>A</rev>
 
32
    <file>introduction.sgml</file>
 
33
  </header>
 
34
 
 
35
  <section>
 
36
    <title>Purpose</title>
 
37
    <p>The purpose of the Erlang ODBC application is to provide the
 
38
      programmer with an ODBC interface that has a Erlang/OTP touch and
 
39
      feel. So that the programmer may concentrate on solving his/her
 
40
      actual problem instead of struggling with pointers and memory
 
41
      allocation which is not very relevant for Erlang. This user guide
 
42
      will give you some information about technical issues and provide
 
43
      some examples of how to use the Erlang ODBC interface.</p>
 
44
  </section>
 
45
 
 
46
  <section>
 
47
    <title>Prerequisites</title>
 
48
    <p>It is assumed that the reader is familiar with the Erlang
 
49
      programming language, concepts of OTP and has a basic
 
50
      understanding of relational databases and SQL.</p>
 
51
  </section>
 
52
 
 
53
  <section>
 
54
    <title>About ODBC</title>
 
55
    <p>Open Database Connectivity (ODBC) is a Microsoft standard for
 
56
      accessing relational databases that has become widely used. The
 
57
      ODBC standard provides a c-level application programming
 
58
      interface (API) for database access. It uses Structured Query
 
59
      Language (SQL) as its database access language.</p>
 
60
  </section>
 
61
 
 
62
  <section>
 
63
    <title>About the Erlang ODBC application</title>
 
64
    <p>Provides an Erlang interface to communicate with relational
 
65
      SQL-databases. It is built on top of Microsofts ODBC interface and
 
66
      therefore requires that you have an ODBC driver to the database
 
67
      that you want to connect to. The Erlang ODBC application is designed 
 
68
      using the version 3.0 of the ODBC-standard, however using the option
 
69
      <c>{scrollable_cursors, off} </c> for a connection has been known
 
70
      to make it work for at least some 2.X drivers.</p>
 
71
  </section>
 
72
</chapter>
 
73
 
 
74