Questions tagged [faircom]
8 questions
2
votes
1 answer
How do I get my UPDATE statement to function on ctree?
So I am writing a script that both inserts and updates based on a certain condition. I have the insert statement finished but having a hard time trying get my UPDATE statement to work in CTREEACE DATABASE script section. If there is anybody familiar…

AceNinja1101
- 63
- 6
2
votes
1 answer
FairCom c-tree ODBC Connection - PHP
I have a User DSN configured in Windows ODBC:
Name Driver
testdb FairCom c-tree ODBC Driver
$user = "";
$pass = "";
$dsn = "testdb";
$cx = odbc_connect($dsn,$user,$pass);
if($cx === false) {
echo "
failure
"; echo…
failure
"; echo…

Xin Chen
- 283
- 5
- 14
1
vote
1 answer
Documenting Internal Structures of v4 CTree Database.. parsing binary?
I have a very old (circa 1993, v4 Faircom CTree Database) that was used by a now defunct test equipment manufacturer. I have no access to original configuration but there only appear to be two tables (two files) and then two other matching files…

jess_askey
- 11
- 2
1
vote
2 answers
Need Ctree Faircom connection string for Tosca Automation tool
We are trying to establish connection between Tosca and ctree faircom database but it fails to establish the connection.
Getting the following error message:
'Could not establish a connection using "connection string:
DRIVER=CTREE ODBC Driver;
…

Arul S
- 13
- 4
1
vote
1 answer
How do I create an index using the FairCom c-treeACE CTDB API?
Here is my code based on the CTDB tutorial.
#include
#include
#include "ctdbsdk.h" /* c-tree headers */
#define END_OF_FILE INOT_ERR /* INOT_ERR is ctree's 101 error. See cterrc.h */
CTHANDLE hSession;
CTHANDLE…

Ray Hulha
- 10,701
- 5
- 53
- 53
1
vote
0 answers
Error when exporting the data from FairCom c-tree database (ODBC) into MS Excel
I'm trying to transfer the data from an old .dat file into MS Excel using the ODBC driver for FairCom c-tree database. The data is transfered to Excel, but before import I've received two warning messages and it seems like the part of the data is…

NikolaH
- 11
- 1
0
votes
1 answer
What port do I use to send MQTT messages to FairCom MQ from Python?
I'm trying to send MQTT messages to FairCom MQ using Paho. What port would I use?
In my paho.mqtt.publish() call I understand to set hostname to "localhost" or the IP of the machine FairCom MQ is running on but what do I set port to?

Walter Johnson
- 19
- 4
0
votes
1 answer
While loop for selecting field names?
I have a nasty, nasty data layout that I am forced to work with. I finally got a working query using C# and a for loop executing the same query over and over but adjusting which fields are called, but now I am wondering if it is possible to do it…

Alan
- 2,046
- 2
- 20
- 43