码迷,mamicode.com
首页 >  
搜索关键字:student    ( 6827个结果
MYSQL 数据表备份
方法: mysqldump -uuser_name -p db_name table_nameList >save_file_path 例子: 备份分studio数据库的student 表 mysqldump -uroot -p studio student>E:\1.tx...
分类:数据库   时间:2014-10-21 11:57:00    阅读次数:222
HDU - 4802 GPA
Description In college, a student may take several courses. for each course i, he earns a certain credit (c i), and a mark ranging from A to F, which is comparable to a score (s i), according to th...
分类:其他好文   时间:2014-10-20 23:23:31    阅读次数:260
c#中Hashtable方法返回值的探索
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConApp{ class Student { ...
分类:Windows程序   时间:2014-10-20 11:19:25    阅读次数:237
C中多变的结构体 struct typedef
这几天看代码,看到几种类型的结构体,结构声明如下: struct    book{    string name;    int price;    int num; }; 此种结构定义结构变量的格式如下: struct    book      student;  struct      book{    string name;    int price;...
分类:其他好文   时间:2014-10-19 18:39:26    阅读次数:270
整理SQL
由4张简单的不能再简单的表,演变出50道SQL表结构:表Student (S#,Sname,Sage,Ssex) 学生表S# student_no Sage student_age Ssex student_sex表Course(C#,Cname,T#) 课程表C# course_no Cname....
分类:数据库   时间:2014-10-19 15:31:45    阅读次数:305
Union和Union All的差别
如果我们有一个表Student,包含下面字段与数据:drop table student;create table student(id int primary key,name nvarchar2(50) not null,score number not null);insert into st...
分类:其他好文   时间:2014-10-18 15:18:15    阅读次数:210
Hibernate系列学习之(二) 多对一、一对一、一对多、多对多的配置方法
hihernate一对多关联映射(单向Classes----->Student) 一对多关联映射利用了多对一关联映射原理 多对一关联映射:在多的一端加入一个外键指向一的一端,它维护的关系是多指向一 一对多关联映射:在多的一端加入一个外键指向一的一端,它维护的关系是一指向多 也就是说一对多和多对一的映射策略是一样的,只是站的角度不同 在一一端维护关系的缺点:  * 如果将t_studen...
分类:Web程序   时间:2014-10-18 00:45:37    阅读次数:315
KVC
#import "ViewController.h"#import "Student.h"#import "Book.h"#import "News.h"@interface ViewController ()@end@implementation ViewController- (void)vie...
分类:其他好文   时间:2014-10-17 23:07:53    阅读次数:284
KVC的应用
// Student *stu=[[Student alloc]init];// [stu setValue:@12 forKey:@"age"];// [stu setValue:@14 forKey:@"_age"];// [stu setValue:@"zhangsan" forKey...
分类:其他好文   时间:2014-10-17 21:48:27    阅读次数:197
扩展方法小参考
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ public class Student { p...
分类:其他好文   时间:2014-10-17 20:21:48    阅读次数:175
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!