Platforms to show: All Mac Windows Linux Cross-Platform
/SQL/SQLDatabaseMBS Microsoft Access Connect
Required plugins for this example: MBS SQL Plugin
Last modified Mon, 7th Jun 2015.
You find this example project in your MBS Xojo Plugin download as a Xojo project file within the examples folder: /SQL/SQLDatabaseMBS Microsoft Access Connect
Download this example: SQLDatabaseMBS Microsoft Access Connect.zip
Project "SQLDatabaseMBS Microsoft Access Connect.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control ConnectButton Inherits PushButton
ControlInstance ConnectButton 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
dim ConnectionString as string
ConnectionString = "ODBC:"+TextArea1.Text
con.DatabaseName = ConnectionString
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
dim sql as string = "SELECT * FROM tChangedInfo;"
dim r as RecordSet = con.SQLSelect(Sql)
if r<>nil then
MsgBox r.IdxField(1).StringValue
else
MsgBox "Failed to query."
end if
// Disconnect is optional
// autodisconnect will ocur in destructor if needed
con.Close
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 StaticText112 Inherits Label
ControlInstance StaticText112 Inherits Label
End Control
Control TextArea1 Inherits TextArea
ControlInstance TextArea1 Inherits TextArea
End Control
Property mode As Integer
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 iOS
- /SQL/SQLDatabaseMBS CubeSQL select version
- /SQL/SQLDatabaseMBS Firebird Connect
- /SQL/SQLDatabaseMBS Microsoft SQL Connect
- /SQL/SQLDatabaseMBS Microsoft SQL Connect and query version
- /SQL/SQLDatabaseMBS Microsoft SQL cross platform
- /SQL/SQLDatabaseMBS MSSQL Execute
- /SQL/SQLDatabaseMBS ODBC Connect
- /SQL/SQLDatabaseMBS SQL Anywhere Connect
- /SQL/SQLDatabaseMBS SQLite Encryption Fetch values
Download this example: SQLDatabaseMBS Microsoft Access Connect.zip
The items on this page are in the following plugins: MBS SQL Plugin.