Commit ec400817dbc08c4fdd9aa8b4e0cc6afd3bbc2161
1 parent
1d0f615536
Exists in
master
and in
1 other branch
Ora v4 working
Showing
1 changed file
with
0 additions
and
4 deletions
Show diff stats
json_utility.go
1 | 1 | package webutility |
2 | 2 | |
3 | 3 | import ( |
4 | - "fmt" | |
5 | 4 | "net/http" |
6 | 5 | "encoding/json" |
7 | 6 | "errors" |
... | ... | @@ -165,14 +164,11 @@ func fetchJSON(db *ora.Ses, project string) (string, error) { |
165 | 164 | if err != nil { |
166 | 165 | return "", err |
167 | 166 | } |
168 | - fmt.Println("prep passes") | |
169 | 167 | |
170 | 168 | rset, err := stmt.Qry() |
171 | 169 | if err != nil { |
172 | - fmt.Println(err) | |
173 | 170 | return "", err |
174 | 171 | } |
175 | - fmt.Println("query passes") | |
176 | 172 | |
177 | 173 | var data string |
178 | 174 | if rset.Next() { | ... | ... |