Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jlarke

Pages: [1]
1
I installed v9SP1B2, created a brand new PostgreSQL DB using the script on your web site, created a new system ODBC data source for that new database, and tried to connect to it. After a few seconds, I get 5015-8038: "Database Error: The selected database is not a ThumbsPlus database. If you are connecting to a client/server ThumbsPlus database, check with the database administrator to ensure your login has appropriate privileges."

I turned on logging in the ODBC control panel and found this:

query='Select * from ThumbsPlusDatabase'
[13.561]ERROR from backend during send_query: 'SERROR'
[13.562]ERROR from backend during send_query: 'C42P01'
[13.562]ERROR from backend during send_query: 'Mrelation "thumbsplusdatabase" does not exist'


I'm guessing that you need to quote the table name to keep it from getting folded to lowercase. I can duplicate that same problem in the psql shell.

Thumbs9=# select * from ThumbsPlusDatabase;
ERROR:  relation "thumbsplusdatabase" does not exist
LINE 1: select * from ThumbsPlusDatabase;
                      ^
Thumbs9=# select * from "ThumbsPlusDatabase";
     attribute      | value
--------------------+-------
 thumbnail_width    | 320
 thumbnail_height   | 320
 thumbnail_type     | 6
 thumbnail_compress | 88
 thumbnail_files    | 0
 volume_match       | 3
 like_style         | 1
 transactions       | 0
 background_conn    | 1
 quote_style        | 2
(10 rows)

2
ThumbsPlus v7-v9 Questions / PostgreSQL configuration
« on: 2013-10-13 11:35:37 »
Hrm. The scheme loads in PostgreSQL without any errors, so I don't think string is the current problems. The issues I've seen all relate to the fact that PG is case-sensitive and ThumbsPlus is not consistent in its capitalization. Do you remember anything else about what you did, and what the TP version was?

3
ThumbsPlus v7-v9 Questions / PostgreSQL configuration
« on: 2013-09-18 16:45:29 »
Does anyone have v9 working with PostgreSQL? I've been unable to get it to work and Cerious haven't responded to my bug report since I submitted it on 6/30.

I can create the DB using the latest script on Cerious' web site, and the ODBC DSN test completes successfully, but ThumbsPlus always reports that it's not a ThumbsPlus database.

Pages: [1]