在 VFP 中保存查询
如何将查询保存在磁盘上。我使用 TO 子句(示例:SELECT * FROM sellers TO w.qpr)。一切正常,但是当我使用 DO 运行查询时,我收到以下错误: http://s52.radikal.ru/i138/1201/2f/15765ffe2346.png 为了获得像查询设计器中那样的查询,我应该更改什么,我的意思是查询应该出现在浏览窗口中,但使用命令模式。 先感谢您。
How to save queries on disk.I use the TO clause(example:SELECT * FROM vendors TO w.qpr).Everything works,but when I run the query with DO i receive the following error:
http://s52.radikal.ru/i138/1201/2f/15765ffe2346.png
And what should I change in order to obtain the query like in query designer,I mean that the query should appear in browse window,but using the command mode.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与其他答案一样,使用 MODIFY 命令为您选择的代码创建 .prg。
INTO 子句用于结果。
或者
如果您想要 XLS 或 CSV 或其他内容,请选择光标,然后使用
保存查询文件
执行
文件
、新建
,然后选择查询
单选按钮。As in the other answer, use MODIFY command to make a .prg for your select code.
The INTO clause is for the result.
Or
If you want a XLS or CSV or something, select into a cursor then use
To save a query file
Do
File
,New
, and selectQUERY
radio button.TO 子句用于存储查询结果,而不是查询本身。 (并且,TO 是 VFP 扩展;首选 INTO。)
如果要保存查询,请打开 PRG 文件 (MODIFY COMMAND) 并在其中写入查询,然后保存它。
如果您简单地省略 TO 或 INTO 子句,查询结果将显示在 BROWSE 窗口中。或者,使用 INTO CURSOR 并给出游标名称,然后发出 BROWSE 浏览游标。
添马舰
The TO clause is for storing the results of the query, not the query itself. (And, TO is a VFP extension; INTO is preferred.)
If you want to save the query, open up a PRG file (MODIFY COMMAND) and write the query there, then save it.
If you simply omit the TO or INTO clause, the query results will appear in a BROWSE window. Alternatively, use INTO CURSOR and give a cursor name, then issue BROWSE to browse the cursor.
Tamar