
Aug
02
Sqlite Cheatsheet
Published 08:08 Aug 02, 2020 by @ezra.
#Programming# SQLite
Installing update
$ sudo apt install sqlite3
And to run the sqlite program you do
$ sqlite3...

Aug
02
Mongodb Cheatsheet
Published 08:08 Aug 02, 2020 by @ezra.
#Programming# MongoDB
MongoDB is an open-source document database and leading NoSQL database. MongoDB is written i...

Aug
02
Data table Cheatsheet
Published 08:08 Aug 02, 2020 by @ezra.
#Programming# Data Table
While working with data tables if you want to populate the table from an ajax call, you h...

Aug
02
Python sqlite Cheatsheet
Published 08:08 Aug 02, 2020 by @ezra.
#Programming# Sqlite - Python Driver
import sqlite3
from sqlite3 import Error
try:
conn = sqlite3.connect(...