Browse Source

fcl-db: cosmetic

git-svn-id: trunk@27252 -
reiniero 11 years ago
parent
commit
f7a7701f5c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/fcl-db/tests/sqldbtoolsunit.pas

+ 3 - 3
packages/fcl-db/tests/sqldbtoolsunit.pas

@@ -264,7 +264,7 @@ begin
       end;
       if SQLServerType=ssSybase then
       begin
-        // Evanlueate NULL expressions according to ANSI SQL:
+        // Evaluate NULL expressions according to ANSI SQL:
         // http://infocenter.sybase.com/archive/index.jsp?topic=/com.sybase.help.ase_15.0.commands/html/commands/commands85.htm
         FConnection.ExecuteDirect('SET ANSINULL ON');
 
@@ -272,14 +272,14 @@ begin
         1) with ddl in tran; e.g.
         use master
         go
-        sp_dboption pubs3, "ddl in tran", true
+        sp_dboption pubs3, 'ddl in tran', true
         go
         Avoid errors like
         The 'CREATE TABLE' command is not allowed within a multi-statement transaction in the 'test' database.
         2) allow nulls by default, e.g.
         use master
         go
-        sp_dboption pubs3, "allow nulls by default", true
+        sp_dboption pubs3, 'allow nulls by default', true
         go
         }
       end;