]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/tdb.tex
tried to make Close() docs more clear
[wxWidgets.git] / docs / latex / wx / tdb.tex
index 92cd1fec51f4783543c06b4ea0f93d450e7eaf22..401f78758e2b8c0536679dc836332228bef6ddaf 100644 (file)
@@ -316,7 +316,7 @@ You cannot compile the wxODBC classes under Win16 - sorry.
 \normalbox{MORE TO COME}
 
 {\it Under Unix}
---with-iodbc flag for configure
+--with-odbc flag for configure
 
 \normalbox{MORE TO COME}
 
@@ -404,8 +404,8 @@ member.
 
 \begin{verbatim}
     wxDbConnectInf DbConnectInf;
-    DbConnectInf.SetDsn,"MyDSN");
-    DbConnectInf.SetUserID,"MyUserName");
+    DbConnectInf.SetDsn("MyDSN");
+    DbConnectInf.SetUserID("MyUserName");
     DbConnectInf.SetPassword("MyPassword");
     DbConnectInf.SetDefaultDir("");
 \end{verbatim}
@@ -832,7 +832,7 @@ this example it was stored in "DbConnectInf.Henv") have been closed, then
 it is safe to release the environment handle:
 
 \begin{verbatim}
-    DbConnectInf->FreeHenv());
+    DbConnectInf->FreeHenv();
 \end{verbatim}
 
 Or, if the long form of the constructor was used and the constructor was allowed