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

Discuss the database features
Post Reply
dreamquartz
Posts: 911
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 24.04 LTS.
User avatar
robleyd
Moderator
Posts: 5504
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"
Slackware 15 (current) 64 bit
Apache OpenOffice 4.1.16
LibreOffice 26.2.3.2; SlackBuild for 26.2.3 by Eric Hameleers
---------------
I hate this damn computer, I wish that I could sell it.
It won't do what I want it to, Only what I tell it.
Mountaineer
Posts: 336
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
LibreOffice 7.6 on Windows 10pro and other Versions parallel
User avatar
Villeroy
Volunteer
Posts: 31363
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: 336
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...
LibreOffice 7.6 on Windows 10pro and other Versions parallel
dreamquartz
Posts: 911
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 24.04 LTS.
dreamquartz
Posts: 911
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 24.04 LTS.
Post Reply