Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement sql query Analyzer lcx by vbs

2025-04-09 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how vbs implements the sql query analyzer lcx. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

Example:

If (lcase (right (wscript.fullname,11)) = "wscript.exe") then

Echo "Execute it under the cmd.exe Plz! Thx."

Echo "code by lcx"

Wscript.quit

End If

If wscript.arguments.count0 Then

Echo "SQL Operation-execution result" & vbcrlf

For j = 0 To rs.Fields.Count-1

Echo rs.Fields (j). Name & vbcrlf

Next

For I = 1 To 20

If rs.Eof Then

Exit For

End If

For j = 0 To rs.Fields.Count-1

Echo fixNull (rs (j)) & vbcrlf

Next

Rs.MoveNext

Next

End If

Echo "="

Echo "Common" & rs.Fields.Count& "column" & vbcrlf

For I = 1 To rs.PageCount

Page=i

Next

Echo "Co-ownership" & page & "Page"

Rs.Close

Else

If sql "" Then

Conn.Execute (sql)

ChkErr (Err)

Echo "execution complete" & vbcrlf

End If

End If

Conn.Close

Set rs = Nothing

Set conn = Nothing

Set rsTable = Nothing

End Sub

Function getDataType (typeId)

Select Case typeId

Case 130

GetDataType = "text"

Case 2

GetDataType = "integer"

Case 3

GetDataType = "long integer"

Case 7

GetDataType = "date / time"

Case 5

GetDataType = "double precision"

Case 11

GetDataType = "Yes / No"

Case 128

GetDataType = "OLE object"

Case Else

GetDataType = typeId

End Select

End Function

Function getTableList (conn, sqlStr, rsTable)

Set rsTable = conn.OpenSchema (20, Array (Empty, "table"))

Echo "the following table name exists:"

Do Until rsTable.Eof

GetTableList = getTableList & "[" & rsTable ("Table_Name") & "]" & vbcrlf

RsTable.MoveNext

Loop

RsTable.MoveFirst

End Function

This is the end of this article on "how vbs implements sql query Analyzer lcx". I hope the above content can be helpful to you, so that you can learn more knowledge. if you think the article is good, please share it out for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report