Not able to load tables from .sqlite database #244
-
Hi, When I try to load data from table 'rain' using connectox, it is not able to identify the it but I am successfully able to do so using sqlite3. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 18 replies
-
Hi, can you try the absolute path of the database file? Here is an example of the connection string: |
Beta Was this translation helpful? Give feedback.
-
Hi @deepakpunia20 , can you try the newest alpha version import urllib
path = urllib.parse.quote("C:\\Users\\Deepak Punia\\rain.sqlite")
df = cx.read_sql(f"sqlite://{path}", query) |
Beta Was this translation helpful? Give feedback.
Hi @deepakpunia20 , can you try the newest alpha version
pip install connectorx==0.2.5-alpha.1
and see whether it works? You may also need to urlencode your file path like this: