V1A0

Results 16 comments of V1A0

After a few tries I'm just not sure is this really so necessary and what is the bes way to code it 😅.

> SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows the user to rename a table or to add a new column to an...

Dear kingabzpro, thank you so much for your article, parts "CSV to SQLLEX.db" and "Testing on Available SQLITE3x Database" just amazing examples of sqllex usage possibilities. If you don't mind...

### Hey everyone, I just created a telegram group to make it easier for us to communicate with each other. Welcome you to join! [![Telegram group](https://img.shields.io/badge/Telegram-Group-blue.svg?logo=telegram)](https://t.me/joinchat/CKq9Mss1UlNlMDIy) or [here is the...

> But does it make sense to return the path at all if this argument is not required when creating an object? Yep, sure it is. It's one of the...

Hay @ethixkr, thanks for your pull request. I'm sorry, but code from updated example failing. ``` Traceback (most recent call last): File "test_readme.py", line 15, in db.create_table( 'groups' ... sqlite3.OperationalError:...

# Sqllex v0.1.10.4 ### The number of experimental records has been increased from 1,000 to 10,000 ### Running [tests/time-tests/main.py](https://github.com/v1a0/sqllex/blob/main/tests/time-tests/main.py) ![image](https://user-images.githubusercontent.com/54343363/123636033-93911000-d846-11eb-936a-48aaf0abf278.png) ### Results for running each function manually ```python # function...

## 0.2.0.0-rc3, SQLite ```python # # total runtime/(records) 0.2.0.0-rc3 # # 0.674s crete_table(db) # 0.00333 sec/(1 table), 1x insert_fats(db) # 0.20000 sec/(10_000 rec), 1x insert_slow(db) # 0.69250 sec/(10_000 rec), 1x...

> > ## 0.2.0.0-rc3, SQLite > > ```python > # # total runtime/(records) 0.2.0.0-rc3 > # # 0.674s > crete_table(db) # 0.00333 sec/(1 table), 1x > insert_fats(db) # 0.20000 sec/(10_000...

# Speed tests moved to unit tests `tests/test_sqllex.py` ### Now result of time tests saves as `{test_name}.prof` files in `tests` directory after run ```python # @unittest.skip("Turned off manually") @unittest.skipUnless(importlib.util.find_spec('cProfile'), "Module...