Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
/ erlora Public archive
forked from saleyn/erlora

Erlang interface to C++ OCCI Oracle bindings.

License

Notifications You must be signed in to change notification settings

adie/erlora

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project implements C++ OCCI port program for enabling Erlang
communications with Oracle database server.

To get started you need to properly set ERLHOME and OCCIHOME in
`c_src/Makefile` and lib versions in `priv/ora.rel` (if you run `make`,
erlc will tell you what versions you have).

Run `make`. If all went ok you should have `priv/oraserver` executable
and `ebin/ora.boot` script.

To try it out, run

`erl -pa ../erlora/ebin`

and in erlang shell execute

1> application:start(ora).
ok
2> {ok, Pid} = ora:connect("user/password@hostname/sid", []).
{ok,<0.39.0>}

and then you should be able to execute any functions of `ora` module passing
obtained `Pid`.

About

Erlang interface to C++ OCCI Oracle bindings.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 55.6%
  • Erlang 25.0%
  • C 19.4%