在 VFP 中保存查询

发布于 2024-12-28 16:29:27 字数 285 浏览 0 评论 0原文

如何将查询保存在磁盘上。我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

胡大本事 2025-01-04 16:29:28

与其他答案一样,使用 MODIFY 命令为您选择的代码创建 .prg。

INTO 子句用于结果。

SELECT * FROM zip INTO CURSOR c_zip

或者

SELECT * FROM zip INTO TABLE c:\temp\test 

如果您想要 XLS 或 CSV 或其他内容,请选择光标,然后使用

EXPORT TO c:\temp\zip.csv XL5

保存查询文件
执行文件新建,然后选择查询单选按钮。

As in the other answer, use MODIFY command to make a .prg for your select code.

The INTO clause is for the result.

SELECT * FROM zip INTO CURSOR c_zip

Or

SELECT * FROM zip INTO TABLE c:\temp\test 

If you want a XLS or CSV or something, select into a cursor then use

EXPORT TO c:\temp\zip.csv XL5

To save a query file
Do File, New, and select QUERY radio button.

扶醉桌前 2025-01-04 16:29:27

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文