當前位置:首頁 » 編程語言 » trimsql

trimsql

發布時間: 2024-03-29 23:29:13

❶ VB如何設置ADODC連接sql字元串使用變數

應該可以吧,不過變數不能這么的表示,要加單引號及雙引號和& 字元,試試改成user id = '" & trim(ip.text)&"',其餘的參照

❷ vb中連接SQL查詢語句代碼

『模塊中的代碼
Public Function connectstr() As String
sqlpath = App.Path & "\資料庫.mdb"
connectstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & sqlpath & "" 『access資料庫
End Function
Public Function runselect(ByVal sqlm As String) As ADODB.Recordset '返回記錄集
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
On Error GoTo run_error
Set cn = New ADODB.Connection
cn.Open connectstr()
Set rs = New ADODB.Recordset
rs.CursorLocation = adUseClient
rs.LockType = adLockOptimistic
rs.Open Trim(sqlm), cn, adOpenDynamic
Set runselect = rs
Set rs = Nothing
Set cn = Nothing
run_error:
MsgBox Err.Description
End Function
』窗體中的代碼.................
Private Sub Combo1_Change()
Dim mrc As New ADODB.Recordset
Set mrc = runselect("select * from 表 where 欄位='" & Trim(Combo1.Text) & "'")
Set DataGrid1.DataSource = mrc '顯示在 datagrid 中
End Sub

❸ ORACLE想通過取得幾次執行查詢語句的執行時間計算得到平均值,應該如何寫SQL語句呢

貌似沒有好辦法啊
但有個笨方法
select sysdate from al;
查詢語句1;
查詢語句2;
查詢語句3;
select sysdate from al;

開始執行查詢語句前的sysdate和執行後的sysdate求差,得到的秒數除以語句條數

熱點內容
php判斷中文英文 發布:2024-11-28 16:50:11 瀏覽:110
安卓平板打王者老閃退怎麼辦 發布:2024-11-28 16:50:11 瀏覽:391
如何理解編程 發布:2024-11-28 16:46:01 瀏覽:296
sql數據結構 發布:2024-11-28 16:32:13 瀏覽:713
scratch編程自學 發布:2024-11-28 16:09:15 瀏覽:825
蘇州cnc編程學徒招聘 發布:2024-11-28 16:07:44 瀏覽:610
linux中怎麼搭建http伺服器配置 發布:2024-11-28 16:04:17 瀏覽:291
緩存expires 發布:2024-11-28 16:02:27 瀏覽:383
圖像的jpeg壓縮matlab 發布:2024-11-28 16:02:05 瀏覽:940
androidcompilewith 發布:2024-11-28 16:00:19 瀏覽:435