Re: Messages o Terminal

2025-03-04 Thread Igor Korot
Please ignore my previous message Works like a charm. Thank you. On Tue, Mar 4, 2025 at 7:13 PM Adrian Klaver wrote: > > On 3/4/25 22:28, Igor Korot wrote: > > Hi, ALL, > > I'm trying to execute: > > > > [code] > > queries.push_back( L"CREATE TABLE IF NOT EXISTS .. > > [/code] > >

Re: Messages o Terminal

2025-03-04 Thread Igor Korot
Adran, On Tue, Mar 4, 2025 at 7:13 PM Adrian Klaver wrote: > > On 3/4/25 22:28, Igor Korot wrote: > > Hi, ALL, > > I'm trying to execute: > > > > [code] > > queries.push_back( L"CREATE TABLE IF NOT EXISTS .. > > [/code] > > > > However, when I run my profeam second tme I see n the Termin

Re: Messages o Terminal

2025-03-04 Thread Adrian Klaver
On 3/4/25 22:28, Igor Korot wrote: Hi, ALL, I'm trying to execute: [code] queries.push_back( L"CREATE TABLE IF NOT EXISTS .. [/code] However, when I run my profeam second tme I see n the Terminal: [quote] NOTICE: relation "abcatcol" already exists, skipping [/quote] Is there any way

Re: Messages o Terminal

2025-03-04 Thread David G. Johnston
On Tue, Mar 4, 2025 at 6:07 PM Igor Korot wrote: > [quote] > NOTICE: relation "abcatcol" already exists, skipping > [/quote] > > Is there any way to suppress this NOTICE message? > > Specifically, no. Any notice message, yes. https://www.postgresql.org/docs/current/runtime-config-client.html#RU

Messages o Terminal

2025-03-04 Thread Igor Korot
Hi, ALL, I'm trying to execute: [code] queries.push_back( L"CREATE TABLE IF NOT EXISTS .. [/code] However, when I run my profeam second tme I see n the Terminal: [quote] NOTICE: relation "abcatcol" already exists, skipping [/quote] Is there any way to suppress this NOTICE message? Tha