Difference between revisions of "Gambas/libraries/gb.db/Connection"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Gambas‎ | libraries‎ | gb.db
Jump to navigation Jump to search
(→‎Identifiers: more information)
m (→‎Identifiers: formatting tweaks)
Line 40: Line 40:
 
* [[Commit (gb.db.Connection)|Commit]]()
 
* [[Commit (gb.db.Connection)|Commit]]()
 
* [[Create (gb.db.Connection)|Create]]( <u>Table</u> AS String ) AS [[Result (gb.db)|Result]]
 
* [[Create (gb.db.Connection)|Create]]( <u>Table</u> AS String ) AS [[Result (gb.db)|Result]]
* [[Edit (gb.db.Connection)|Edit]]( <u>Table</u> AS String {{optargs|, Request AS String, Arguments AS , ...}} ) AS [[Result (gb.db)|Result]]
+
* [[Edit (gb.db.Connection)|Edit]]( <u>Table</u> AS String {{optargs|, <u>Request</u> AS String, <u>Arguments</u> AS , ...}} ) AS [[Result (gb.db)|Result]]
 
* [[Exec (gb.db.Connection)|Exec]]( <u>Request</u> AS String, Arguments AS {{optargs|, ...}} ) AS [[Result (gb.db)|Result]]
 
* [[Exec (gb.db.Connection)|Exec]]( <u>Request</u> AS String, Arguments AS {{optargs|, ...}} ) AS [[Result (gb.db)|Result]]
* [[Find (gb.db.Connection)|Find]]( <u>Table</u> AS String {{optargs|, Request AS String, Arguments AS , ...}} ) AS [[Result (gb.db)|Result]]
+
* [[Find (gb.db.Connection)|Find]]( <u>Table</u> AS String {{optargs|, <u>Request</u> AS String, <u>Arguments</u> AS , ...}} ) AS [[Result (gb.db)|Result]]
 
* [[Open (gb.db.Connection)|Open]]() AS Boolean
 
* [[Open (gb.db.Connection)|Open]]() AS Boolean
 
* [[Quote (gb.db.Connection)|Quote]]( <u>Name</u> AS String ) AS String  
 
* [[Quote (gb.db.Connection)|Quote]]( <u>Name</u> AS String ) AS String  
 
* [[Rollback (gb.db.Connection)|Rollback]]()
 
* [[Rollback (gb.db.Connection)|Rollback]]()
 
|}
 
|}

Revision as of 16:31, 5 December 2006

Navigation

computing: software: programming: Gambas: gb.db.Connection

Overview

The gb.db.Connection class provides an interface to a particular database engine connection. It is similar to the Connection interface in ADO.

Usage

To connect to a database server: create a connection object, fill the needed properties, and call the Open method.

For SQLite connections, the following algorithm is used:

  • If Name is null, then a memory database is opened.
  • If Name is an absolute path, then this path is used.
  • If Name is a relative path, then:
    • If Host is null, then the database is located in the application temporary directory, which is /tmp/gambas.$UID/sqlite .
    • Otherwise, Host gives the database directory, and the database path is the result of concatenating Host and Name.

This class is creatable:

DIM hConnection AS Connection
hConnection = NEW Connection ( ) 

Identifiers

Properties Methods
  1. REDIRECT Template:arg/opt ) AS Result
  • Exec( Request AS String, Arguments AS
  1. REDIRECT Template:fmt/arg/opt ) AS Result
  • Find( Table AS String [ <, Request AS String, Arguments AS , ...> ] ) AS Result
  • Open() AS Boolean
  • Quote( Name AS String ) AS String
  • Rollback()