[Solved] Bit off topic, but do not where to ask about DBeaver

Discuss the database features
Post Reply
dreamquartz
Posts: 881
Joined: Mon May 30, 2011 4:02 am

[Solved] Bit off topic, but do not where to ask about DBeaver

Post by dreamquartz »

Hello All,

I use terms like

Code: Select all

LIKE '%' || :Employee || '%'
all the time in LO with a Split DataBase, but it appears not the correct syntax for DBeaver SQL
2 questions therefore:
1. Does anyone know where to ask questions about DBeaver?
2. Does anyone know the right syntax for

Code: Select all

LIKE '%' || :Employee || '%'
in DBeaver?

Thanks in advance,

Dream
Last edited by dreamquartz on Sat Aug 13, 2022 6:32 am, edited 1 time in total.
LO 7.x, HSQLDB 2.7.x & Ubuntu 22.04 LTS.
User avatar
robleyd
Moderator
Posts: 5086
Joined: Mon Aug 19, 2013 3:47 am
Location: Murbko, Australia

Re: Bit of topic, but do not where to ask about DBeaver

Post by robleyd »

A quick look with a search engine, and I found their Wiki page suggests "For technical support, feature suggestions and any other questions, please use our GitHub Issue tracker"
Cheers
David
OS - Slackware 15 64 bit
Apache OpenOffice 4.1.15
LibreOffice 24.2.2.2; SlackBuild for 24.2.2 by Eric Hameleers
Mountaineer
Posts: 318
Joined: Sun Sep 06, 2020 8:27 am

Re: Bit of topic, but do not where to ask about DBeaver

Post by Mountaineer »

Try

Code: Select all

concat('%',:Employee, '%')
and check, if the program supports :Param

It may also depend on your database, as with Base.
You could use your code with Base+hsqldb but it would fail for Base+dbf/dBase
OpenOffice 3.1 on Windows Vista
User avatar
Villeroy
Volunteer
Posts: 31279
Joined: Mon Oct 08, 2007 1:35 am
Location: Germany

Re: Bit of topic, but do not where to ask about DBeaver

Post by Villeroy »

HSQL does not support :named_parameters. This is a Base thing.
Please, edit this topic's initial post and add "[Solved]" to the subject line if your problem has been solved.
Ubuntu 18.04 with LibreOffice 6.0, latest OpenOffice and LibreOffice
Mountaineer
Posts: 318
Joined: Sun Sep 06, 2020 8:27 am

Re: Bit of topic, but do not where to ask about DBeaver

Post by Mountaineer »

Villeroy wrote: Sun Jul 31, 2022 1:33 pm ... This is a Base thing.
and also found in the docs for DBeaver (searched it via google), so now my "bet" is on using concat...
OpenOffice 3.1 on Windows Vista
dreamquartz
Posts: 881
Joined: Mon May 30, 2011 4:02 am

Re: Bit off topic, but do not where to ask about DBeaver

Post by dreamquartz »

Apparently the input must be something like: 'Name', therefore input between single quotes.
I can even use all variations for input into a single table.

I am now trying to figure out how to use multiple tables for user input, because I need to be able to search on Address, CompanyName, EmailAddress, PhoneFax Numbers, and the lot.

Dream
LO 7.x, HSQLDB 2.7.x & Ubuntu 22.04 LTS.
dreamquartz
Posts: 881
Joined: Mon May 30, 2011 4:02 am

Re: [SOLVED] Bit off topic, but do not where to ask about DBeaver

Post by dreamquartz »

My original question has been answered.

Thank you all.

Dream
LO 7.x, HSQLDB 2.7.x & Ubuntu 22.04 LTS.
Post Reply