作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 VBScript 从文本文件加载查询到 MS Access 查询集合。我正在使用这样的东西: 代码源自Here .
for each myFile in folder.Files
objecttype = fso.GetExtensionName(myFile.Name)
objectname = fso.GetBaseName(myFile.Name)
WScript.Echo " " & objectname & " (" & objecttype & ")"
if (objecttype = "form") then
oApplication.LoadFromText acForm, objectname, myFile.Path
elseif (objecttype = "bas") then
oApplication.LoadFromText acModule, objectname, myFile.Path
elseif (objecttype = "mac") then
oApplication.LoadFromText acMacro, objectname, myFile.Path
elseif (objecttype = "report") then
oApplication.LoadFromText acReport, objectname, myFile.Path
elseif (objecttype = "sql") then
'oApplication.LoadFromText acQuery, objectname, myFile.Path
' Add create querydef code here
end if
next
但我不确定如何使用 VBScript 创建查询定义。
有什么想法吗?
注意:我最初使用这样的方式导出到文件:
For Each myObj In oApplication.CurrentDb.QueryDefs
Set f = fso.CreateTextFile(sExportpath & "\" & myObj.Name & ".sql", True)
f.WriteLine(myObj.SQL)
f.Close
Next
最佳答案
这将保存查询定义
For i = 0 To db.QueryDefs.Count - 1
Application.SaveAsText acQuery, db.QueryDefs(i).Name, sExportpath & "\" & db.QueryDefs(i).Name & ".sql"
Next i
然后 LoadFromText 应该工作
关于ms-access - MS Access 查询的 Application.LoadFromText 的替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/859530/
我正在使用 Epplus 将数据上传到数据库。当我尝试使用 LoadFromTest 将我的 csv 文件转换为 xlsx 时,额外的空行也被加载到 xlsx 中。我想知道,我们应该如何限制 Load
我正在尝试使用 VBScript 从文本文件加载查询到 MS Access 查询集合。我正在使用这样的东西: 代码源自Here . for each myFile in folder.Files
当使用loadfromtext在access中导入表单时,我不断收到运行时错误2285。在互联网上搜索发现很多人都有同样的问题,但没有解决方案。有谁知道导致此错误的原因吗? 编辑:此外,在包含数据库的
我是一名优秀的程序员,十分优秀!