08 2014 档案

摘要:1.创建Usercreate user user01 identified by user01,2.赋予连接数据库的权限grant connect to user01;3.把user00的表Emp表权限赋给user01user00登录后,grant select to Emp to user01;4... 阅读全文
posted @ 2014-08-20 17:20 Aeolia 阅读(2487) 评论(0) 推荐(0)
摘要:1. 表相关a. 主键:constraint [主键的约束名] primary keyb. 外键:constraint [外键约束名] foreign key( ) references []()c. 唯一性: uniqued.条件约束: constraint ...check...Example:... 阅读全文
posted @ 2014-08-20 16:23 Aeolia 阅读(262) 评论(0) 推荐(0)
摘要:日进实习第二周,着手开始HTML5方面的工作。1.margin&paddingmargin:一个元素所占空间的边缘到相邻元素之间的距离padding:元素内容到元素边界的距离2.特殊符号空格: 引号:" 小于:< 大于:> 版权号(@)&copy3. 标签跳转到本文档中标记位置... 阅读全文
posted @ 2014-08-12 17:19 Aeolia 阅读(184) 评论(0) 推荐(0)
摘要:1. 通过KeyPress 事件保证TextBox输入值都为数字。this.testBox.KeyPress+=delegate(object sender , KeyPressEventArgs e){ if(e.KeyChar!=8 && !Char.IsDigit(e.KeyChar)) e.... 阅读全文
posted @ 2014-08-08 15:32 Aeolia 阅读(104) 评论(0) 推荐(0)
摘要:进入日进的第一周,主要是做winform相关的内容,这次权当复习下,下面做一下这一周的笔记。1. Combobox关联数据源DataTablea. 自定义DataTable内容var dataTable = new DataTable(){}; dataTable.Colu... 阅读全文
posted @ 2014-08-08 15:03 Aeolia 阅读(178) 评论(0) 推荐(0)