Platforms to show: All Mac Windows Linux Cross-Platform

/SQL/Informix Connect


Required plugins for this example: MBS SQL Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /SQL/Informix Connect

This example is the version from Tue, 1st Oct 2012.

Project "Informix Connect.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open() dim con as new SQLConnectionMBS try // where is the library? // For Windows the file is "ICLIT09B.dll", for Linux libifcli.so and for Mac OS X libifcli.dylib. con.Option(con.kOptionLibraryInformix) = "ICLIT09B.DLL" // connect to database // in this example it is Informix, // but can also be SQLite, Sybase, Oracle, DB2, MySQL, SQLServer, InterBase, SQLBase and ODBC dim server as string = "" // the connection string dim userID as string = "" // A string containing a user name to use when establishing the connection. dim password as string = "" // A string containing a password to use when establishing the connection. con.Connect(server, userID, password, SQLConnectionMBS.kInformixClient) MsgBox "We are connected!" // Disconnect is optional // autodisconnect will occur in destructor if needed con.Disconnect msgbox "We are disconnected!" catch r as RuntimeException MsgBox r.message // SAConnection::Rollback() // can also throw an exception // (if a network error for example), // we will be ready try // on error rollback changes con.Rollback catch rr as runtimeexception MsgBox rr.message end try end try End EventHandler
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
End Project

The items on this page are in the following plugins: MBS SQL Plugin.


The biggest plugin in space...