Got questions, comments, patches, etc.?
Contact Jason Woofenden
gitweb
/
wfpl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix db_get_value after mysql->mysqli upgrade
[wfpl.git]
/
examples
/
persistent.sql
1
drop table if exists persistent;
2
create table persistent (
3
k varchar(30) binary not null default "",
4
v varchar(255) binary not null default "",
5
primary key (k)
6
) CHARSET=utf8;