#sqlite

[ follow ]
#ai

Google's Big Sleep AI model just found a zero-day vulnerability in the wild - but don't hold your breath for game-changing AI bug hunting tools any time soon

Big Sleep AI has discovered the first unknown memory-safety bug in a widely used software, marking a milestone in AI vulnerability detection.

Google claims AI first after SQLite security bug discovered

Google's AI model Big Sleep detects memory safety vulnerabilities, showcasing its potential in preventing software exploits before official releases.

Google's Big Sleep AI model just found a zero-day vulnerability in the wild - but don't hold your breath for game-changing AI bug hunting tools any time soon

Big Sleep AI has discovered the first unknown memory-safety bug in a widely used software, marking a milestone in AI vulnerability detection.

Google claims AI first after SQLite security bug discovered

Google's AI model Big Sleep detects memory safety vulnerabilities, showcasing its potential in preventing software exploits before official releases.
moreai

Using the built-in SQLite module in Node js - LogRocket Blog

Node.js v22.5.0 features a native SQLite module, enhancing database management capabilities in an experimental state.
#python

SQLite and SQLAlchemy in Python: Move Your Data Beyond Flat Files - Real Python

Python, SQLite, and SQLAlchemy provide database functionality for storing data in a single file without a database server.
Flat files in formats like CSV, JSON, XML can also be used for storing data in a structured way.

Build a Contact Book App With Python, Textual, and SQLite - Real Python

You can build a contact book TUI app using Python, Textual, and SQLite.
The app allows managing contacts through a user-friendly interface.

SQLite and SQLAlchemy in Python: Move Your Data Beyond Flat Files - Real Python

Python, SQLite, and SQLAlchemy provide database functionality for storing data in a single file without a database server.
Flat files in formats like CSV, JSON, XML can also be used for storing data in a structured way.

Build a Contact Book App With Python, Textual, and SQLite - Real Python

You can build a contact book TUI app using Python, Textual, and SQLite.
The app allows managing contacts through a user-friendly interface.
morepython

Episode #200: Avoiding Error Culture and Getting Help Inside Python - The Real Python Podcast

Error culture includes false positives, hero culture, and alert fatigue; remedies suggested. Real Python's alert system configuration discussed.
#rest-api

BUILDING A REST API WITH GO AND SQLITE(PART 2)

Implementing CRUD operations in Go with SQLite
Introducing error handling and validation for API functionality

BUILDING A REST API WITH GO AND SQLITE(PART 2)

Implementing CRUD operations for a Blog API with Go and SQLite.
Introducing error handling and validation to ensure API functionality.

BUILDING A REST API WITH GO AND SQLITE(PART 2)

Implementing CRUD operations in Go with SQLite
Introducing error handling and validation for API functionality

BUILDING A REST API WITH GO AND SQLITE(PART 2)

Implementing CRUD operations for a Blog API with Go and SQLite.
Introducing error handling and validation to ensure API functionality.
morerest-api

How Much Can Sqlite Handle? Multiple Threads Concurrently Inserting Into Sqlite

SQLite is suitable for low to medium traffic websites, handling up to 100K hits/day.
The SQLite website itself manages 400K to 500K HTTP requests per day with dynamic content using 200 SQL statements per webpage.

How to create a SQLite database

Creating a SQLite database is as simple as using the command 'sqlite3 my-database-name'.
Once the database is created, you can issue SQLite commands like CREATE TABLE to set up tables.

SQLite: Default a datetime field to the current time (now)

Use current_timestamp in SQLite to set default datetime field to current date/time.
[ Load more ]