diff options
Diffstat (limited to 'extras/tiopf/demos/Demo_06_CreateTable/demo_06.lpr')
-rw-r--r-- | extras/tiopf/demos/Demo_06_CreateTable/demo_06.lpr | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/extras/tiopf/demos/Demo_06_CreateTable/demo_06.lpr b/extras/tiopf/demos/Demo_06_CreateTable/demo_06.lpr deleted file mode 100644 index 8e966dc7..00000000 --- a/extras/tiopf/demos/Demo_06_CreateTable/demo_06.lpr +++ /dev/null @@ -1,45 +0,0 @@ -program demo_06; - -{$mode objfpc}{$H+} - -uses - {$IFDEF UNIX}{$IFDEF UseCThreads} - cthreads, - {$ENDIF}{$ENDIF} - Classes, SysUtils, - fpg_main, frm_main, tiOPFManager, tiConstants; - - -procedure MainProc; -var - frm: TMainForm; -begin - fpgApplication.Initialize; - - if GTIOPFManager.PersistenceLayers.FindByPersistenceLayerName(cTIPersistFBL) = nil then - raise Exception.Create('The system failed to find the <' + cTIPersistFBL + '> persistence layer') - else - GTIOPFManager.DefaultPersistenceLayerName := cTIPersistFBL; - - // Change the connection string to suite your database location - // ** Remote connection -// gTIOPFManager.ConnectDatabase('192.168.0.54|/home/graemeg/programming/data/tiopf.fdb', 'sysdba', 'masterkey'); - // ** Local connection - gTIOPFManager.ConnectDatabase('/home/graemeg/programming/data/tiopf.fdb', 'sysdba', 'masterkey'); - - frm := TMainForm.Create(nil); - try - frm.Show; - fpgApplication.Run; - finally - frm.Free; - gTIOPFManager.DisconnectDatabase; - gTIOPFManager.Terminate; - end; -end; - -begin - MainProc; -end. - - |