You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ourweb4 even though there is no direct method for doing order by through this library, you could try:
let select_stmt = try con.prepare("SELECT * FROM test WHERE Id=? ORDER BY [whatever]")
// send query
let res = try select_stmt.query(12345)
//read all rows from the resultset
let rows = try res.readAllRows()
// print the rows
print(rows)
Is there a way to use a order by statement in a select statement.
The text was updated successfully, but these errors were encountered: