caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Alain Frisch <frisch@clipper.ens.fr>
To: Johann Spies <jspies@maties.sun.ac.za>
Cc: ocaml mailing list <caml-list@inria.fr>
Subject: Re: [Caml-list] How to install a package
Date: Wed, 8 Aug 2001 12:11:02 +0200 (MET DST)	[thread overview]
Message-ID: <Pine.GSO.4.04.10108081155420.7770-100000@clipper.ens.fr> (raw)
In-Reply-To: <87y9oude5k.fsf@bywoner.sun.ac.za>

On 8 Aug 2001, Johann Spies wrote:

> I have followed the instructions for installing libpq_ocaml.

(libpq_ocaml is no longer maintained; you may want to install Postgres
instead (safer interface, more examples); I will give instructions for it)

> But how can I use libpq in the toplevel?

As the package contains C objects, you have to build a custom toplevel:

ocamlfind ocamlmktop -o postgres_top -linkpkg -package postgres

You also have to pass to this toplevel the directory where it can
find the .cmi files for the package (is there a reason
for ocamlmktop not putting the -I options in the custom toplevel ?):

./postgres_top -I `ocamlfind query postgres`

        Objective Caml version 3.01

# let c = new Postgres.connection "host=clipper";;
val c : Postgres.connection = <obj>
# c # user;;
- : string = "frisch"


Hope this helps.

--
 Alain

-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs  FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr  Archives: http://caml.inria.fr


  parent reply	other threads:[~2001-08-08 10:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-08-08 10:44 Johann Spies
2001-08-08  9:40 ` Xavier Leroy
2001-08-08 10:11 ` Alain Frisch [this message]
2001-08-08 13:38   ` Johann Spies
     [not found] ` <15217.3474.83354.531393@akasha.ijm.jussieu.fr>
2001-08-08 13:00   ` Johann Spies

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.GSO.4.04.10108081155420.7770-100000@clipper.ens.fr \
    --to=frisch@clipper.ens.fr \
    --cc=caml-list@inria.fr \
    --cc=jspies@maties.sun.ac.za \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).