SqlString

dataprism.platform.sql.value.SqlStringOps.SqlString
See theSqlString companion object
trait SqlString[A]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Extensions

Extensions

extension (lhs: DbValue[A])
def ++(rhs: DbValue[A]): DbValue[A]
def endsWith(rhs: DbValue[A])(using n: Nullability[A]): DbValue[n.N[Boolean]]
def indexOf(a: DbValue[A])(using n: Nullability[A]): DbValue[n.N[Int]]
def like(rhs: DbValue[A])(using n: Nullability[A]): DbValue[n.N[Boolean]]
def lpad(length: DbValue[Int], content: DbValue[A])(using SqlStringLpadCapability): DbValue[A]
def ltrim: DbValue[A]
def replace(target: DbValue[A], replacement: DbValue[A]): DbValue[A]
def rpad(length: DbValue[Int], content: DbValue[A])(using SqlStringRpadCapability): DbValue[A]
def rtrim: DbValue[A]
def startsWith(rhs: DbValue[A])(using n: Nullability[A]): DbValue[n.N[Boolean]]
def substr(from: DbValue[Int], forLength: DbValue[Int]): DbValue[A]
def trimBoth(rhs: DbValue[A]): DbValue[A]