Initial Commit

This commit is contained in:
2025-03-24 08:50:01 +01:00
commit 30611aa45d
26 changed files with 1477 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
INSERT
OR REPLACE INTO CDSViewField
VALUES
(?, ?, ?, ?, ?)

View File

@@ -0,0 +1,4 @@
INSERT
OR REPLACE INTO Keyword
VALUES
(?, ?)

View File

@@ -0,0 +1,4 @@
SELECT
TechnicalName
FROM
CDSView

View File

@@ -0,0 +1,29 @@
select
CDSViewTechnicalName as CDSViewTechnicalName,
lower(FieldName) as keyword
from
CDSViewField
UNION
select
CDSViewTechnicalName as CDSViewTechnicalName,
lower(Description) as keyword
from
CDSViewField
UNION
select
TechnicalName as CDSViewTechnicalName,
lower(TechnicalName) as keyword
from
CDSView
UNION
select
TechnicalName as CDSViewTechnicalName,
lower(Description) as keyword
from
CDSView
UNION
select
TechnicalName as CDSViewTechnicalName,
lower(DisplayName) as keyword
from
CDSView

View File

@@ -0,0 +1,2 @@
SELECT * FROM CDSView
WHERE TechnicalName = ?

View File

@@ -0,0 +1,2 @@
SELECT * FROM CDSViewField
WHERE CDSViewTechnicalName = ?