Platforms to show: All Mac Windows Linux Cross-Platform
/SQL/SQLDatabaseMBS MSSQL Fetch values
Required plugins for this example: MBS SQL Plugin
Last modified Sun, 17th Mar 2012.
You find this example project in your MBS Xojo Plugin download as a Xojo project file within the examples folder: /SQL/SQLDatabaseMBS MSSQL Fetch values
Download this example: SQLDatabaseMBS MSSQL Fetch values.zip
Project "SQLDatabaseMBS MSSQL Fetch values.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open()
dim db as new SQLDatabaseMBS
db.Option("OLEDBProvider") = "SQLNCLI" // SQLNCLI for SQL Server 2005, SQLNCLI10 for newer version.
// connect to database
// in this example it is MySQL,
// but can also be Sybase, Informix, DB2, SQLServer, InterBase, Oracle, SQLite, SQLBase and ODBC
db.DatabaseName="SQLServer:PcName\SqlServerInstanceName@DatabaseName"
db.UserName=""
db.Password=""
if db.Connect then
dim r as RecordSet = db.SQLSelect("Select fid, fvarchar20 from test_tbl")
// Select from our test table
if r<>Nil then
while not r.EOF
// fetch results row by row and print results
dim fid as integer = r.Field("fid").IntegerValue
dim fvarchar20 as string = r.Field("fvarchar20").StringValue
window1.Listbox1.AddRow str(fid)
window1.Listbox1.cell(window1.Listbox1.LastIndex,1)=fvarchar20
r.MoveNext
wend
end if
else
MsgBox db.ErrorMessage
end if
End EventHandler
End Class
Class Window1 Inherits Window
Control Listbox1 Inherits Listbox
ControlInstance Listbox1 Inherits Listbox
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 DuckDB
- /SQL/SQLDatabaseMBS Microsoft SQL Connect
- /SQL/SQLDatabaseMBS Microsoft SQL Execute Stored Procedure
- /SQL/SQLDatabaseMBS MSSQL Connect
- /SQL/SQLDatabaseMBS ODBC Connect
- /SQL/SQLDatabaseMBS PostgreSQL Notify and Listen
- /SQL/SQLDatabaseMBS SQLite Connect console
- /SQL/SQLDatabaseMBS SQLite custom function
- /SQL/SQLDatabaseMBS SQLite Fetch values threaded
- /SQL/SQLDatabaseMBS SQLite insert record with transaction
Download this example: SQLDatabaseMBS MSSQL Fetch values.zip
The items on this page are in the following plugins: MBS SQL Plugin.