Bazen yazdığımız bir sorguyu json olarak çıktı vermek isteriz create table testfatura( id serial primary key not null, fatura_no varchar(10) not null, aciklama varchar(100) not null ); create table testfatura_detay( id serial primary key not null, testfatura_id int not null references testfatura(id), stokkodu varchar(50), stokadi varchar(50) ); insert into testfatura …
Devamını Oku »Monthly Archives: Ağustos 2021
postgresql caesarCipher
CREATE EXTENSION plpython3u; CREATE OR REPLACE FUNCTION caesarCipher(realtext text, step int) RETURNS TEXT AS $$ outText = [] cryptText = [] uppercase = ['A', 'B', 'C', 'Ç', 'D', 'E', 'F', 'G', 'Ğ', 'H', 'I', 'İ', 'J', 'K', 'L', 'M', 'N', 'O', 'Ö', 'P', 'Q', 'R', 'S', 'Ş', 'T', 'U', 'Ü', …
Devamını Oku »