Documentation ¶
Overview ¶
It is highly recommended that each Go package you create has a block comment preceding the package declaration that introduces developers to the package, and also explains what the package does.
The package works on 2 tables on an SQLite database.
The names of the tables are:
- Users
- Userdata
The definitions of the tables are:
CREATE TABLE Users ( ID INTEGER PRIMARY KEY, Username TEXT ); CREATE TABLE Userdata ( UserID INTEGER NOT NULL, Name TEXT, Surname TEXT, Description TEXT ); // BUG(1): Function ListUsers() not working as expected // BUG(2): Function AddUser() is too slow
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Filename = ""
)
Functions ¶
func DeleteUser ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.