From: Carlo B. <car...@us...> - 2004-12-07 08:52:53
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6442/Source/Core Modified Files: InstantConnectionManager.pas Log Message: Added database creation before building. Index: InstantConnectionManager.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConnectionManager.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantConnectionManager.pas 3 Dec 2004 16:04:29 -0000 1.7 --- InstantConnectionManager.pas 7 Dec 2004 08:52:44 -0000 1.8 *************** *** 400,403 **** --- 400,405 ---- try Application.ProcessMessages; + if not Connector.DatabaseExists then + Connector.CreateDatabase; Connector.BuildDatabase(Model); Connector.Connect; |