Sy Le

Results 7 comments of Sy Le

I thought about it, maybe we can extend bookmarking to databases and even tables. Also we can also save favorite queries. So this way, we can quickly get to connections,...

It might be hard for the implementation since Azure Table doesn't have a plain text SQL Query.

After some research, Microsoft does have a plain SQL query support for CosmoDB. https://docs.microsoft.com/en-us/azure/cosmos-db/sql-api-sql-query Azure CosmoDB can be set up locally, instructions can be found here. https://docs.microsoft.com/en-us/azure/cosmos-db/local-emulator Reopened.

@cicorias can you clarify what you mean by "connect via the Cassandra support to Cosmos DB"? Are you referring to CosmosDB (with Cassandra Flavor)? I haven't tested that scenario, most...

@ilanl I ended up using a workaround which is the bulk insert. Your use case might be different. I found this stack overflow, essentially we can wrap things up in...

To support MSSQL and Python and SQLAlchemy ``` # pip install pymssql engine = create_engine('mssql+pymssql://sa:password123!@localhost:1433/music_store?charset=utf8', echo = True) ```

To support python and mysql ``` pip install pymysql engine = create_engine("mysql+pymysql://user:pass@some_mariadb/dbname?charset=utf8mb4") ```