Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
postgresql_rc4_to_rc5.sql
Package: jforum-2.1.8-src.zip [view]
Upload User: gdxydsw
Upload Date: 2019-01-29
Package Size: 16721k
Code Size: 1k
Category:
Java Develop
Development Platform:
Java
- CREATE TABLE jforum_posts_text (
- post_id INTEGER NOT NULL,
- post_text TEXT,
- post_subject VARCHAR(100) DEFAULT NULL,
- PRIMARY KEY ( post_id )
- );
- INSERT INTO jforum_posts_text ( post_id, post_text, post_subject ) SELECT post_id, post_text, post_subject FROM jforum_posts;
- ALTER TABLE jforum_posts DROP COLUMN post_subject;
- ALTER TABLE jforum_posts DROP COLUMN post_text;
- CREATE TABLE jforum_privmsgs_text (
- privmsgs_id INTEGER NOT NULL,
- privmsgs_text TEXT
- );
- CREATE INDEX idx_pm_text_id ON jforum_privmsgs_text (privmsgs_id);
- INSERT INTO jforum_privmsgs_text ( privmsgs_id, privmsgs_text ) SELECT privmsgs_id, privmsgs_text FROM jforum_privmsgs;
- ALTER TABLE jforum_privmsgs DROP COLUMN privmsgs_text;
- DROP TABLE jforum_resutls;
- CREATE TABLE jforum_vote_results (
- vote_id INTEGER NOT NULL DEFAULT 0,
- vote_option_id INTEGER NOT NULL DEFAULT 0,
- vote_option_text VARCHAR(255) NOT NULL DEFAULT '',
- vote_result INTEGER NOT NULL DEFAULT 0
- );