mirror of
https://codeberg.org/scip/note.git
synced 2025-12-17 12:41:10 +01:00
are two different version of the script in the same time with
the same features, one for mysql and the other one for the binary
database.
ADDED: Dump to textfile capability. Later on I want to dump it into a
palm readable format, any help is welcome!
ADDED: interactive mode.
CHANGED: Better modularity, better code.
CHANGED: note can now run without the need of a config file. If does not
exist, it will try to work with default values.
ADDED: sub num_bereich(), which allows one to specify more then one
number for deletion or displaying (i.e.: "-d 1,4,7" or "-d 4-9")
8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
CREATE TABLE note (
|
|
id int(10) DEFAULT '0' NOT NULL auto_increment,
|
|
number int(10),
|
|
note text,
|
|
date text,
|
|
PRIMARY KEY (id)
|
|
);
|