摘要: package org.zxj.Message;public class MessageBo implements java.io.Serializable{ private String title, content; private java.sql.Date date; public void setTitle(String title){ this.title = title; } pu... 阅读全文
posted @ 2011-05-15 17:12 sirzxj 阅读(347) 评论(0) 推荐(0)
摘要: ALTER TABLE:添加,修改,删除表的列,约束等表的定义。查看列:desc 表名;修改表名:alter table t_book rename to bbb;添加列:alter table 表名 add column 列名 varchar(30);删除列:alter table 表名 drop column 列名;修改列名MySQL: alter table bbb change nnnnn... 阅读全文
posted @ 2011-05-15 15:22 sirzxj 阅读(255) 评论(0) 推荐(0)
摘要: protected int Mylogin(string table,string name,string pwd) { string MyConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["SMS"].ConnectionString; SqlConnect... 阅读全文
posted @ 2011-05-15 13:11 sirzxj 阅读(136) 评论(0) 推荐(0)