File: unknowntype.R

package info (click to toggle)
r-cran-rpostgresql 0.6-2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 944 kB
  • sloc: ansic: 3,091; sh: 2,863; makefile: 7
file content (56 lines) | stat: -rw-r--r-- 1,751 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

## selectWhereZero test
##
## test for the 'Issue 1' on the Google Code issue log
## this was reported in June and fixed by Joe Conway (svr committ r100)
##
## Assumes that
##  a) PostgreSQL is running, and
##  b) the current user can connect
## both of which are not viable for release but suitable while we test
##
## Dirk Eddelbuettel, 03 Oct 2009

## only run this if this env.var is set correctly
if (Sys.getenv("POSTGRES_USER") != "" & Sys.getenv("POSTGRES_HOST") != "" & Sys.getenv("POSTGRES_DATABASE") != "") {

    ## try to load our module and abort if this fails
    stopifnot(require(RPostgreSQL))

    ## load the PostgresSQL driver
    drv <- dbDriver("PostgreSQL")

    ## connect to the default db
    con <- dbConnect(drv,
                     user=Sys.getenv("POSTGRES_USER"),
                     password=Sys.getenv("POSTGRES_PASSWD"),
                     host=Sys.getenv("POSTGRES_HOST"),
                     dbname=Sys.getenv("POSTGRES_DATABASE"),
                     port=ifelse((p<-Sys.getenv("POSTGRES_PORT"))!="", p, 5432))


    if (dbExistsTable(con, "tmpirisdata")) {
        print("Removing tmpirisdata\n")
        dbRemoveTable(con, "tmpirisdata")
    }


    ## run a simple query and show the query result
    res <- dbGetQuery(con, "create table tmpirisdata (ra REAL[])")
    res <- dbSendQuery(con, "select ra from tmpirisdata")
    print(res)
    type <- dbColumnInfo(res)
    print(type)
    data <- fetch(res, -1)
    print(data)

    ## cleanup
    if (dbExistsTable(con, "tmpirisdata")) {
        print("Removing tmpirisdata\n")
        dbRemoveTable(con, "tmpirisdata")
    }

    ## and disconnect
    dbDisconnect(con)
    cat("PASS:  reached to the end of the test code without segmentation fault\n")
}