diff options
| author | Richard M. Stallman | 1999-02-06 05:12:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-02-06 05:12:54 +0000 |
| commit | 50842164698560653fe34c5bb6ff65ce978dd718 (patch) | |
| tree | 58994984e92702b59f6c275b85150ac4056c35b9 | |
| parent | a081a529397af02bd9fc274065fcd982733e1d8b (diff) | |
| download | emacs-50842164698560653fe34c5bb6ff65ce978dd718.tar.gz emacs-50842164698560653fe34c5bb6ff65ce978dd718.zip | |
(sql-help): Doc fix.
(sql-mysql): Doc fix.
| -rw-r--r-- | lisp/progmodes/sql.el | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 5e1e92420f1..48ae7af0ac3 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -540,13 +540,18 @@ usually named *SQL*. The name of the major mode is SQLi. | |||
| 540 | 540 | ||
| 541 | Use the following commands to start a specific SQL interpreter: | 541 | Use the following commands to start a specific SQL interpreter: |
| 542 | 542 | ||
| 543 | psql by PostGres: \\[sql-postgres] | 543 | psql (PostGres): \\[sql-postgres] |
| 544 | mysql by TcX: \\[sql-mysql] | 544 | |
| 545 | SQL*Plus by Oracle: \\[sql-oracle] | 545 | Other non-free SQL implementations are also supported: |
| 546 | dbaccess by Informix: \\[sql-informix] | 546 | |
| 547 | isql by Sybase: \\[sql-sybase] | 547 | mysql: \\[sql-mysql] |
| 548 | sql by Ingres: \\[sql-ingres] | 548 | SQL*Plus: \\[sql-oracle] |
| 549 | isql by Microsoft: \\[sql-ms] | 549 | dbaccess Informix: \\[sql-informix] |
| 550 | Sybase: \\[sql-sybase] | ||
| 551 | Ingres: \\[sql-ingres] | ||
| 552 | Microsoft: \\[sql-ms] | ||
| 553 | |||
| 554 | But we urge you to choose a free implementation instead of these. | ||
| 550 | 555 | ||
| 551 | Once you have the SQLi buffer, you can enter SQL statements in the | 556 | Once you have the SQLi buffer, you can enter SQL statements in the |
| 552 | buffer. The output generated is appended to the buffer and a new prompt | 557 | buffer. The output generated is appended to the buffer and a new prompt |
| @@ -954,8 +959,11 @@ The default comes from `process-coding-system-alist' and | |||
| 954 | 959 | ||
| 955 | (defun sql-mysql () | 960 | (defun sql-mysql () |
| 956 | "Run mysql by TcX as an inferior process. | 961 | "Run mysql by TcX as an inferior process. |
| 962 | Note that the widespread idea that mysql is free software | ||
| 963 | is inaccurate; its license is too restrictive. | ||
| 964 | We urge you to use PostGres instead. | ||
| 957 | 965 | ||
| 958 | If buffer *SQL* exists but no process is running, make a new process. | 966 | If buffer `*SQL*' exists but no process is running, make a new process. |
| 959 | If buffer exists and a process is running, just switch to buffer | 967 | If buffer exists and a process is running, just switch to buffer |
| 960 | `*SQL*'. | 968 | `*SQL*'. |
| 961 | 969 | ||