0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vbsの作法 その47

0
Posted at

概要

vbsの作法調べてみた。
win10、64bitでやってみた。
adodb叩いてみた。

環境

windows10 64bit
ms office 2007 pro

手順

batファイルで、黒い画面を開く

c:\Windows\SysWOW64\cmd.exe \c wscript test.vbs

wscript test.vbsで実行。

サンプルコード

Set db = CreateObject("ADODB.Connection")
db.Open "Provider=MSDASQL;Driver={Microsoft Access Driver (*.mdb)};DBQ=db1.mdb"
Set rs = db.Execute("SELECT * FROM are")
Do Until rs.EOF
	msgbox rs(0)
	rs.MoveNext
Loop
rs.close
db.close

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?