Last active
March 31, 2021 15:04
-
-
Save max-l/9250053 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RawSql._ | |
val pathsById = q("select id, st_AsText(r.path) from findPaths(?,?,?)", x, y, z).toSeq[Long, String].toMap | |
object object RawSql { | |
def q(query: String, args: Any*) = | |
new RawTupleQuery(query, args) | |
class RawTupleQuery(query: String, args: Seq[Any]) { | |
private def prep = { | |
val s = Session.currentSession | |
val st = s.connection.prepareStatement(query) | |
def unwrap(o: Any) = o match { | |
case None => null | |
case Some(ob) => ob.asInstanceOf[AnyRef] | |
case null => null | |
case a@AnyRef => a | |
case a@_ => a | |
} | |
for(z <- args.zipWithIndex) { | |
st.setObject(z._2 + 1, unwrap(z._1)) | |
} | |
st | |
} | |
def toSeq[A1]()(implicit f1 : TypedExpressionFactory[A1,_]) = { | |
val st = prep | |
val rs = st.executeQuery | |
try { | |
val ab = new ArrayBuffer[A1] | |
val m1 = f1.thisMapper.asInstanceOf[PrimitiveJdbcMapper[A1]] | |
while(rs.next) | |
ab.append(m1.convertFromJdbc(m1.extractNativeJdbcValue(rs, 1))) | |
ab | |
} | |
finally { | |
rs.close() | |
st.close() | |
} | |
} | |
def toTupleSeq[A1,A2]()(implicit f1 : TypedExpressionFactory[A1,_], f2 : TypedExpressionFactory[A2,_]) = { | |
val st = prep | |
val rs = st.executeQuery | |
try { | |
val ab = new ArrayBuffer[(A1,A2)] | |
val m1 = f1.thisMapper.asInstanceOf[PrimitiveJdbcMapper[A1]] | |
val m2 = f2.thisMapper.asInstanceOf[PrimitiveJdbcMapper[A2]] | |
while(rs.next) | |
ab.append( | |
(m1.convertFromJdbc(m1.extractNativeJdbcValue(rs, 1)), | |
m2.convertFromJdbc(m2.extractNativeJdbcValue(rs, 2)))) | |
ab | |
} | |
finally { | |
rs.close() | |
st.close() | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment