I have an OrientDB database and I want to import it into scala within Zeppelin. I'm following the example provided here . However when I run the following command on Zeppelin's notebook
import com.orientechnologies.orient.core.id.ORecordId
import com.orientechnologies.orient.core.sql.query.OSQLSynchQuery
I got this error:
<console>:27: error: object orientechnologies is not a member of package com
import com.orientechnologies.orient.core.id.ORecordId
but it looks orientechnologies
is a member of com
. Any suggestion?