//state.h#ifndef__STATE_H__#define__STATE_H__#include"context.h"#includeusingnamespacestd;typedefenum{CHILDREN=1,PRIMARY_SCHOOL_STUDENT,MIDDLE_SCHOOL_...
分类:
编程语言 时间:
2014-06-26 20:45:10
阅读次数:
250
Student No.: _______________ Name: ________________________________________1TK2934 Object-Oriented ProgrammingProject : GUI & EventIn this lab you wil...
分类:
其他好文 时间:
2014-06-26 12:57:21
阅读次数:
330
struct结构体的字节数 等于 结构体中最大类型的字节数的倍数。如:typedef struct Student{ short id; //2个字节 char name[15]; //1*15个字节 int age; //4个字节 char num; //1个字节} Student;总共28个字节...
分类:
编程语言 时间:
2014-06-25 21:13:46
阅读次数:
235
今天在MySQL中用hibernate测试update语句发现以下问题: update语句竟然不去作用;表机构如下:create table student(sid int primary key , sname varchar(45) not null, ssex char(2) not nul....
分类:
系统相关 时间:
2014-06-25 13:58:02
阅读次数:
352
Well , you know. As a college student who want to find a good job after graduating like me , scores are not that important. I just want to have some low scores which can help me graduate successfully...
分类:
其他好文 时间:
2014-06-25 09:59:37
阅读次数:
202
create database ST;use st;create table Student(Sno varchar(10) primary key ,Sname varchar(15) ,Ssex varchar(2) ,Sage int ,Sdept varchar(10));create ta...
分类:
数据库 时间:
2014-06-25 09:43:01
阅读次数:
254
1.编写目的为了学习,为了更好的学习java.为了让想要学习这个整合的人少走弯路! ! !2.实验环境l MyEclipse6.5l JBoss4.2.1l SQL2005l 数据库脚本程序CREATE TABLE student (id int(11) NOT NULL auto_incremen...
分类:
系统相关 时间:
2014-06-25 00:42:58
阅读次数:
433
create table student
(
id varchar2(5) primary key,
name varchar2(20), not null,
sex char(2) check(sex='男' or sex='女')
)
--向student中插入一条数据,用函数来验证插入是否正确
create or replace function (f_id in varchar2...
分类:
数据库 时间:
2014-06-25 00:11:31
阅读次数:
376
struct student{ long num; float score; struct student *next;};注意:只是定义了一个struct student类型,并未实际分配存储空间。只有定义了变量才分配内存单元。#includeusing namespace std;int mai...
分类:
编程语言 时间:
2014-06-24 22:24:45
阅读次数:
318
SQL Server之字符串函数以下所有例子均Studnet表为例:计算字符串长度len()用来计算字符串的长度select sname ,len(sname) from student字符串转换为大、小写lower() 用来将一个字符串转换为小写,upper() 用来将一个字符串转换为大写sele...
分类:
数据库 时间:
2014-06-24 10:56:25
阅读次数:
254