Re: How to use 32 bit ODBC driver

2022-06-21 Thread Rino Mardo
hi. you didn't mention, after downloading did you install it? On Tue, 21 Jun 2022, 9:11 pm Aditya Bhardwaj wrote: > Hi, > > For Postgres, I'd like to utilize a 32-bit ODBC driver. I attempted to > download it, but it does not appear in the 32-bit ODBC Data Source. Please > assist me in locating

Re: accessing postgres from c++

2022-06-21 Thread Rino Mardo
a db connector that will fit everyone? i think that's timely. i have tried, once, libpqxx but i think it forces me to use the source. couldn't find a binary that will just install and use like how python works, i.e., "pip install psycopg2". On Tue, 21 Jun 2022, 3:57 pm Matthias Apitz wrote: >

accessing postgres from c++

2022-06-20 Thread Rino Mardo
hi. i found odbc.postgresql.org when i was looking for a way to hook up my c++ project to postgresql server. installed it and tested to be successful in connection. this was when i had postgresql running from a virtualbox vm in Ubuntu. i installed a postgresql container using Docker for Windows in

Re: newbie db design question

2022-06-11 Thread Rino Mardo
thank you. i have received some tips on how to approach my problem. i will be trying them out. On Sat, 11 Jun 2022, 5:51 pm Peter J. Holzer wrote: > On 2022-06-11 09:43:46 +0100, Ray O'Donnell wrote: > > On 11 June 2022 08:05:41 Rino Mardo wrote: > > really noob questi

newbie db design question

2022-06-11 Thread Rino Mardo
hello! really noob question here. i have this experimental database design: create table products ( product_id serial primary key, description text, supplier_id) ; create table supplier ( supplier_id serial primary key, description text) ; the products table should be linked to the supplie