根据以下SQL语句,表述正确的选项有(多选) CREATE PROCEDURE pro_addnum @bookidchar(6), @num int AS UPDATE books SET number = number + @num WHERE bookid = @bookid; SELECT * FROMbooks WHERE bookid = @bookid; GO 这个存储过程只能被调用一次 该语句创建了名为pro_addnum的存储过程 存储过程由事件触发,不需要手动启动,当预定事件发生时,存储过程就会自动执行 可以通过EXEC语句来调用这个存储过程 pro_addnum存储过程有2个参数 pro_addnum存储过程,储存了2条SQL语句
时间: 2024-03-29 19:36:04 浏览: 299
正确的选项有:
- 该语句创建了名为pro_addnum的存储过程。
- pro_addnum存储过程有2个参数。
- pro_addnum存储过程,储存了2条SQL语句。
- 可以通过EXEC语句来调用这个存储过程。
不正确的选项有:
- 这个存储过程只能被调用一次。存储过程可以被多次调用。
- 存储过程由事件触发,不需要手动启动,当预定事件发生时,存储过程就会自动执行。存储过程可以被手动调用执行。
相关问题
完善代码import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import java.util.HashMap; import java.util.List; public class FBaseAdapter extends BaseAdapter { private LayoutInflater layoutInflater ; private List<HashMap<String, Object> > list ; public FBaseAdapter (Context context , List<HashMap<String, Object>> list){ this.layoutInflater = LayoutInflater .from(context ) ; this.list = list ; } @Override public int getCount() { return list.size(); } @Override public Object getItem(int i) { return null; } @Override public long getItemId(int i) { return i; } @Override public View getView(final int i, View view, ViewGroup viewGroup) { // LayoutInflater layoutInflater = getLayoutInflater(); View v = layoutInflater.inflate(R.layout.item, null); View l = layoutInflater.inflate(R.layout.listlayout, null); TextView tv_title = v.findViewById(R.id.itemtitle); TextView tv_content = v.findViewById(R.id.itemdetail ); TextView tv_price = v.findViewById(R.id.price); TextView tv_num = v.findViewById(R.id.num); ImageView imageView = v.findViewById(R.id.itemimage); Button btnadd = v.findViewById(R.id.addnum); Button btnsub = v.findViewById(R.id.subnum); TextView txtsum = l.findViewById(R.id.txtsum) ; HashMap hashMap = list.get(i); imageView.setImageResource((Integer) hashMap.get("image")); tv_title.setText(hashMap.get("title").toString()); tv_content.setText(hashMap.get("content").toString()); tv_num.setText(hashMap.get("num").toString()); tv_price.setText(hashMap.get("price").toString()); btnadd.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { int num = (int) list.get(i).get("num"); num++; list.get(i).put("num", num); int totalsum = num * (int) list.get(i).get("price"); notifyDataSetChanged(); txtsum.setText(String.valueOf(totalsum)); } }); btnsub.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { int num = (int) list.get(i).get("num"); if (num > 0) num--; else num = 0; list.get(i).put("num", num); int totalsum = num * (int) list.get(i).get("price"); notifyDataSetChanged(); txtsum.setText(String.valueOf(totalsum)); } }); return v; } }
这段代码是一个自定义的 BaseAdapter,用于在 ListView 中显示商品列表。其中,构造方法传入了一个上下文和一个包含了商品信息的列表,通过 getCount、getItem 和 getItemId 方法确定了列表的大小和元素,通过 getView 方法实现了每个商品项的布局和交互。其中,通过 findViewById 方法获取了布局中的各个控件,并通过 HashMap 获取了商品的图片、标题、内容、数量和单价等信息,通过对加减按钮的监听实现了商品数量的增减,并通过 notifyDataSetChanged 方法通知 ListView 更新列表项,同时更新总价文本框。需要注意的是,该 Adapter 没有使用 ViewHolder,因此在滑动列表时可能会出现卡顿和重复加载的问题,建议使用 ViewHolder 优化。
int DNS_header_create(struct DNS_Header *header){ if(header==NULL){ printf("Header wrong!\n"); return -1; } memset(header, 0x00, sizeof(struct DNS_Header)); srandom(time(NULL)); header->id = random(); header->tag=htons(0x0100); header->queryNum=htons(0x0001); header->answerNum=htons(0x0000); header->authorNum=htons(0x0000); header->addNum=htons(0x0000); return 0; }
这段代码是一个函数,函数名为“DNS_header_create”,它接收一个指向“DNS_Header”结构体的指针“header”。该函数的作用是初始化“header”指向的结构体,设置一些DNS协议头的字段值,如id、tag、queryNum、answerNum、authorNum和addNum。如果传入的指针为NULL,则打印“Header wrong!”的错误信息,并返回-1,否则返回0。该函数使用了C语言中的“memset”函数和“srandom”函数。
阅读全文