Fun API Documentation 0.42.1
The programming language that makes you have fun!
Loading...
Searching...
No Matches
SqlHandle Struct Reference

Node in a singly-linked list of registered SQLite handles. More...

Collaboration diagram for SqlHandle:
[legend]

Data Fields

int id
sqlite3 * db
struct SqlHandlenext

Detailed Description

Node in a singly-linked list of registered SQLite handles.

Each node associates a monotonically increasing positive integer identifier with a raw sqlite3* pointer. The list head is stored in a file-static global (g_sql_handles).

Definition at line 85 of file sqlite.c.

Field Documentation

◆ db

sqlite3* db

Opaque pointer to an opened sqlite3 connection.

Definition at line 87 of file sqlite.c.

◆ id

int id

Positive identifier assigned by the registry.

Definition at line 86 of file sqlite.c.

◆ next

struct SqlHandle* next

Next entry in the singly-linked list.

Definition at line 88 of file sqlite.c.


The documentation for this struct was generated from the following file: