C 學習過程中遇到的問題

2021-06-10 07:18:40 字數 594 閱讀 8438

string sqlcmd1 = @"select table_name from user_tables where table_name like:tablename";

oracleparameter op = new oracleparameter(":tablename", 「%」+this.loadkey.text.toupper()+「%」);

oraclecommand cmd = new oraclecommand(sqlcmd, conn);

cmd.parameters.add(op);

oracledataadapter adp = new oracledataadapter();

adp.selectcommand = cmd;

dataset ds = new dataset();

adp.fill(ds, "tablelist");

需要注意的地方:

1、在sql語句中的引數不要加單引號,但是要新增:號

2、oracleparameter中的引數加:號。

學習loadrunner過程中遇到的問題

1.win7系統,loadrunner11使用ie9進行錄製的過程中,錄製的時候瀏覽器打不開,設定下就好了,如下圖 注意,program to record 不要選擇c program files internet explorer iexplore.exe,而要選擇c program files ...

Nginx 學習過程中遇到的問題

1 啟動報錯 nginx error while loading shared libraries libpcre.so.1 cannot open shared object file no such file or directory 解決 前提是已經安裝好了pcre root server2 ...

Qt學習過程中遇到的問題

由於工作需要,開始使用qt,由於在網上找的教程文件時針對qt3的,所以在學習的過程遇到了許多由於版本不一致造成的問題,因此記錄下來。本機qt版本為 qt5.3.1 windows linux centos 6.2 原因 qt 3.x支援setmainwidget,但是qt4已經取消了對setmain...