Platforms to show: All Mac Windows Linux Cross-Platform
/SQL/SQLDatabaseMBS Microsoft SQL Connect
Required plugins for this example: MBS SQL Plugin
Last modified Sat, 31th Oct 2014.
You find this example project in your MBS Xojo Plugin download as a Xojo project file within the examples folder: /SQL/SQLDatabaseMBS Microsoft SQL Connect
Download this example: SQLDatabaseMBS Microsoft SQL Connect.zip
Project "SQLDatabaseMBS Microsoft SQL Connect.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control server Inherits TextField
ControlInstance server Inherits TextField
End Control
Control StaticText1 Inherits Label
ControlInstance StaticText1 Inherits Label
End Control
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action()
dim con as new SQLDatabaseMBS
// connects to Microsoft SQL Server on Windows
//
// e.g. localhost\SQLEXPRESS@test
try
// connect to database
// in this example it is Microsoft SQL Server,
// but can also be Sybase, Informix, DB2
// Oracle, InterBase, SQLBase and ODBC
con.Option("OLEDBProvider") = "SQLNCLI" // SQLNCLI for SQL Server 2005, SQLNCLI10 for newer version.
'con.Option("UseAPI") = "DB-Library"
// server format should be:
// PcName\SqlServerInstanceName@DatabaseName
con.DatabaseName = "SQLServer:"+server.Text
con.UserName = user.text
con.Password = password.text
con.RaiseExceptions = true // if you like to get exceptions instead of checking error property
con.Scrollable = false // disabling scrolling cursors is much faster for Microsoft SQL Server...
if con.Connect then
MsgBox "We are connected!"
// Disconnect is optional
// autodisconnect will ocur in destructor if needed
con.Close
msgbox "We are disconnected!"
end if
catch r as RuntimeException
MsgBox r.message
end try
End EventHandler
End Control
Control user Inherits TextField
ControlInstance user Inherits TextField
End Control
Control StaticText2 Inherits Label
ControlInstance StaticText2 Inherits Label
End Control
Control password Inherits TextField
ControlInstance password Inherits TextField
End Control
Control StaticText3 Inherits Label
ControlInstance StaticText3 Inherits Label
End Control
Control StaticText4 Inherits Label
ControlInstance StaticText4 Inherits Label
End Control
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
See also:
- /SQL/SQLDatabaseMBS CubeSQL prepared statement
- /SQL/SQLDatabaseMBS CubeSQL prepared statement iOS
- /SQL/SQLDatabaseMBS DuckDB
- /SQL/SQLDatabaseMBS Firebird Connect
- /SQL/SQLDatabaseMBS Microsoft SQL Execute Stored Procedure
- /SQL/SQLDatabaseMBS MySQL Fetch blob
- /SQL/SQLDatabaseMBS PostgreSQL Connect
- /SQL/SQLDatabaseMBS SQLite Connect in Memory Database
- /SQL/SQLDatabaseMBS SQLite custom function
- /SQL/SQLDatabaseMBS SQLite load extension
Download this example: SQLDatabaseMBS Microsoft SQL Connect.zip
The items on this page are in the following plugins: MBS SQL Plugin.