sample-db.V0_0_0.functions.sample.udf.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jdbc Show documentation
Show all versions of kotlin-jdbc Show documentation
A thin library that exposes JDBC API with the convenience of Kotlin and gets out of the way when not needed.
The newest version!
create function __NAME__( input varchar (1024)) returns varchar (1024)
NO SQL
BEGIN
RETURN input;
END