-- id int auto_increment primary key, --添加注释 username varchar(255) default null, -- password varchar(255) default null, -- num varchar(255) default null
A. 为表单添加ID作为主键,自增
B. 为表单添加用户名字段,字符型,默认为空值
C. 为表单添加密码字段,字符型,默认为空值
D. 为表单添加桌号字段,字符型,默认为空值
查看答案
为下列代码添加注释-- id int auto_increment primary key, -- username varchar(255) default null, --添加注释 password varchar(255) default null, -- num varchar(255) default null
A. 为表单添加ID作为主键,自增
B. 为表单添加用户名字段,字符型,默认为空值
C. 为表单添加密码字段,字符型,默认为空值
D. 为表单添加桌号字段,字符型,默认为空值
为下列代码添加注释--添加注释 id int auto_increment primary key, -- username varchar(255) default null, -- password varchar(255) default null, -- num varchar(255) default null
A. 为表单添加ID作为主键,自增
B. 为表单添加用户名字段,字符型,默认为空值
C. 为表单添加密码字段,字符型,默认为空值
D. 为表单添加桌号字段,字符型,默认为空值
为下列代码添加注释//send_content=contStrng;//添加注释ChatMsgEntity entity=new ChatMsgEntity();entity.setName(MainActivity.user_name);entity.setComMeg(false);entity.setText(contStrng);//mDataArrays.add(entity);chatMsgViewAdapter.notifyDataSetChanged();mEditText.setText("");mListView1.setSelection(mListView1.getCount()-1);//sendToYun();
A. 获取用户发送的信息
B. 封装信息
C. 本地显示
D. 发送到服务器
为下列代码添加注释//send_content=contStrng;//ChatMsgEntity entity=new ChatMsgEntity();entity.setName(MainActivity.user_name);entity.setComMeg(false);entity.setText(contStrng);//添加注释mDataArrays.add(entity);chatMsgViewAdapter.notifyDataSetChanged();mEditText.setText("");mListView1.setSelection(mListView1.getCount()-1);//sendToYun();
A. 获取用户发送的信息
B. 封装信息
C. 本地显示
D. 发送到服务器