hi, all!
I have a problem to solve.I encountered an error when I used phoenixdb.I have opened the queryserver service.
my code:
import phoenixdb
database_url = 'http://3.9.8.130:8765/'
conn = phoenixdb.connect(database_url, autocommit=True)
cursor = conn.cursor()
cursor.execute('''select * from SYSTEM."TABLE"''')
print cursor.fetchall()
the error:
phoenixdb.errors.InternalError: (u'RuntimeException: java.sql.SQLException: No suitable driver found for start -> SQLException: No suitable driver found for start', None, None, None)
hi, all! I have a problem to solve.I encountered an error when I used phoenixdb.I have opened the queryserver service. my code: import phoenixdb database_url = 'http://3.9.8.130:8765/' conn = phoenixdb.connect(database_url, autocommit=True) cursor = conn.cursor()
cursor.execute('''select * from SYSTEM."TABLE"''') print cursor.fetchall() the error: phoenixdb.errors.InternalError: (u'RuntimeException: java.sql.SQLException: No suitable driver found for start -> SQLException: No suitable driver found for start', None, None, None)