摘要:
oracle数据库常用sql 基本sql --查询表 select * from table --查看表空间 select * from dba_tablespaces --删除表 drop table 表名 --条件查询 select * from table where 字段 = xx --删除 阅读全文
摘要:
设置该按钮的Click事件: //判断if (pnlDebug.Visible == true) { pnlDebug.Visible = false; } else { pnlDebug.Visible = true; } 阅读全文