たとえば、ステータスが列挙型の PostgreSQL の製品テーブルは次のとおりです。
create type product_status as enum ('InStock', 'OutOfStock');
create table product (
pid int primary key default nextval('product_pid_seq'),
sku text not null unique,
name text not null,
description text not null,
quantity int not null,
cost numeric(10,2) not null,
price numeric(10,2) not null,
weight numeric(10,2),
status product_status not null
);
製品を挿入する典型的な Clojure コードは次のようになります。
(def prod-12345 {:sku "12345"
:name "My Product"
:description "yada yada yada"
:quantity 100
:cost 42.00
:price 59.00
:weight 0.3
:status "InStock"})
(sql/with-connection db-spec
(sql/insert-record :product prod-12345))
ただし、status
列挙型であるため、列挙型にキャストせずに通常の文字列として挿入することはできません。
'InStock'::product_status
次のような準備済みステートメントを使用して実行できることはわかっています。
INSERT INTO product (name, status) VALUES (?, ?::product_status)
しかし、準備されたステートメントを使用せずにそれを行う方法はありますか?