File: PostgresDB_stub.k

package info (click to toggle)
kaya 0.2.0-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,012 kB
  • ctags: 1,307
  • sloc: cpp: 6,691; haskell: 4,833; sh: 2,868; yacc: 768; makefile: 700; perl: 87
file content (14 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module PostgresDB;

import DB;
import Prelude;

abstract data PGConnection = PGCon(Ptr cdata);

type PGDB = DBHandle<PGConnection>;

public PGDB connect(var String conn) {
  throw(NotImplemented);
}

public PGDB connect_pg(String info) = connect(info);