Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
MariaDB/MySQL query builder primary for inserting and updating Python dictionaries into tables.
Nowadays selecting data is easy, but inserting and updating data is annoying.
with pip3 install mariasql --user
start a temporary MariaDB
docker run -d -p 3307:3306 --rm --name mariadb -e MYSQL_ROOT_PASSWORD=password mariadb
start python3 and go
>>> import MariaSQL
>>> db = MariaSQL.MariaSQL(host='127.0.0.1', port=3307)
>>> db.query('create database mariasql;')
()
>>> db.use('mariasql')
>>> # we can create tables based on dict definitions
>>> mytable = dict()
>>> mytable['id'] = int
>>> mytable['name'] = str
>>> mytable['some shitty column name'] = float
>>> db.create_table('test_table', mytable)
()
>>> db.show_tables()
[{'Tables_in_mariasql': 'test_table'}]
>>> # now we inserting a dict into the create tables
>>> data = dict()
>>> data['id'] = 12
>>> data['name'] = 'Alf'
>>> data['some shitty column name'] = 3.1415
>>> db.insert('test_table', data)
()
# let's read from create table
>>> dataset = db.query('select * from test_table')
>>> dataset
[{'id': 12, 'name': 'Alf', 'some shitty column name': 3.1415}]
>>> db.query('show create table test_table')
[{'Table': 'test_table', 'Create Table': 'CREATE TABLE `test_table` (\n `id` int(11) DEFAULT NULL,\n `name` varchar(255) DEFAULT NULL,\n `some shitty column name` double DEFAULT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8'}]
variabele | default value |
---|---|
host | localhost |
port | 3306 |
user | root |
password | password |
db | mysql |
charset | utf8mb4 |
db.use(dbname)
db.show_tables()
db.query(sql)
db.create_db(dbname)
db.create_table(name, tabledef = None)
tabledef
is not given, name
must be a raw sql string which will be executedtabledef
is a dict() and its keys
are just datatype definitions, a table based on this dict will be created
str
-> VARCHAR(255)
int
-> INT
float
-> DOUBLE
dict
-> JSON
db.insert(table, data, on_duplicate = False)
data
must be a dict()
with keys
which exists as COLUMN_NAME
in the sql table. But it must not include all column names.on_duplicate
is set to True
, it will perform an update when the PKs already exists in the table.db.insert_on_duplicate(table, data)
db.insert()
with on_duplicate = True
.FAQs
MariaDB/MySQL query builder primary for inserting and updating Python dictionaries into tables.
We found that mariasql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.