[SparForte][Banner]
[Top Main Menu] Intro | Tutorials | Reference | Packages | Examples | Contributors   [Back Page]      [Next Page]  

MySQLM Database Package

A package for opening multiple connections and having mutiple open queries to a MySQL database. The subprograms here are similar to the mysql package accept that they also require a connection, query or both.

New data types:

  • mysqlm.connection - a connection id to a database
  • mysqlm.query - a database id query

The database package is based on a modified version of Warren Gay's APQ MySQL binding. For full details on these routines, consult the APQ documentation.

There is an enumerated type in the db package that controls the verbosity of tracing:

type db.trace_mode_type is ( db.trace_none, db.trace_db, db.trace_apq, db.trace_full );

type db.trace_mode_type is ( db.trace_none, db.trace_db, db.trace_apq, db.trace_full );

There is an enumerated type that controls file access:

type mysqlm.mode_type is ( mysqlm.read, mysqlm.write, mysqlm.read_write );

There is an enumerated type in the db package that controls fetch order:

type db.fetch_mode_type is ( db.sequential_fetch, db.random_fetch );

There is an enumerated type in the db package that identifies the database engine:

type db.database_type is ( db.engine_postgresql, db.engine_mysql, db.engine_oracle, db.engine_sybase, db.engine_db2 );


 

mysqlm.append( q, s [, a] )

 

Append text s to the SQL query. The text is on the same line.

Example

mysqlm.append( q, s, " where customer_no > 5" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
s in string required SQL query text
a in string empty string additional text to place after the text

Exceptions

An exception is thrown when out of memory.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Append

mysqlm.append_for_insert( q, c, r )

 

Append the fields of record r to the query in the format of an ANSI SQL insert (that is, " ( a, b, ... ) VALUES ( 'a', 'b', ... )"). The record fields may be boolean, string, numeric or universal (treated as a string). String values are appended with Append_Quoted.

Example

type row is record
  b : boolean;
  i : integer;
  s : string;
end record;
r : row;
...
mysqlm.append_for_insert( q, c, r ); -- (b,i,s) values (...)

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id
r in record type required The record type to use for insert data

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqml.append_for_update

Compare With

Ada: N/A

mysqlm.append_for_update( q, c, r )

 

Append the fields of record r to the query in the format of an ANSI SQL update (that is," SET a = 'a', b = 'b', ..." ). The record fields may be boolean, string, numeric or universal (treated as a string). String values are appended with Append_Quoted.

Example

type row is record
  b : boolean;
  i : integer;
  s : string;
end record;
r : row;
...
mysqlm.append_for_update( q, c, r ); -- SET b = ..., i = ... etc.

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id
r in record type required The record type to use for update data

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqml.append_for_insert

Compare With

Ada: N/A

mysqlm.append_line( q, s )

 

Append text s to the SQL query and start a new line.

Example

mysqlm.append_line( q, s, "where customer_no > 5" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
s in string required SQL query text

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Append_Line

mysqlm.append_quoted( q, c, s )

 

Append text s to SQL query while surrounding s with single quotes.

Example

mysqlm.append_quoted( q, c, "customer_name" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id
s in string required SQL query text
a in string empty string additional text to place after the text

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Append_Quoted

mysqlm.begin_work( q, c )

 

Start a database transaction, marking the position of a possible rollback. The query will be erased.

Example

mysqlm.begin_work( q, c );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id

Exceptions

in_abort_state exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.commit_work
mysqlm.rollback_work

Compare With

Ada: APQ.Begin_Work

mysqlm.clear( q )

 

Erase the text of the current query.

Example

mysqlm.clear( q );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Clear

mysqlm.close_db_trace( c )

 

Stop tracing the database activity and close the trace file.

Example

mysqlm.close_db_trace( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.is_trace
mysqlm.open_db_trace
mysqlm.set_trace

Compare With

Ada: APQ.Clear

i := mysqlm.column_index( q, s )

 

Return the position of a query result column. This is the position in the query, not the database table.

Example

third_column_position := mysqlm.column_index( q, "first name" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
s in string required the column heading
i return value mysqlm.column_index_type required the column position in the query

Exceptions

no_column exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.column_name

Compare With

Ada: APQ.Column_Index

s := mysqlm.column_name( q, i )

 

Return the name of a query result column. The number is the position in the query, not the database table.

Example

third_column_heading := mysqlm.column_name( q, 3 );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
i in mysqlm.column_index_type required the column position in the query results
s return value string required the column heading

Exceptions

no_column exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Column_Name
PHP: mysql_field_name

n := mysqlm.columns( q )

 

Return the number of columns (fields) from the last query.

Example

number_of_columns := mysqlm.columns( q );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
n return value natural required the number of columns

Exceptions

no_result exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Columns

mysqlm.commit_work( q, c )

 

Complete a database transaction. The query will be erased.

Example

mysqlm.commit_work( q, c );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id

Exceptions

in_abort_state exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.begin_work
mysqlm.rollback_work

Compare With

Ada: APQ.Commit_Work

mysqlm.connect( c, d [, u, w ][, h][, p] )

 

Connect to database d using username u, password w, hostname h and port p. If no hostname or port are specified, connection is made by a UNIX socket instead of a network socket.

Example

mysqlm.connect( c, "db", "user", "password" );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
d in string required the database name
u in string your username the username to connect with
w in string default password username's password
h in string UNIX Socket hostname for network socket
p in string default port network socket port

Exceptions

If a connection cannot be made, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: combines several APQ functions

mysqlm.databases( c )

 

Show a list of the databases available with the current connection. This is the equivalent of MySQL "show databases".

Example

mysqlm.databases( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.list
mysqlm.schema
mysqlm.users

Compare With

-

mysqlm.disconnect( c )

 

Close a connection created by connect.

Example

mysqlm.disconnect( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.connect

Compare With

Ada: APQ.Disconnect
PHP: mysql_close

b := mysqlm.end_of_query( q )

 

True if there are no more result (tuple) rows.

Example

while not mysqlm.end_of_query( q ) loop ...

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
b return value boolean required true if no more rows

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.End_Of_Query

e := mysqlm.engine_of( c )

 

Return the identity of the database engine

Example

e := mysqlm.engine_of( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
e return value db.database_type db.engine_mysql, etc.

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Engine_Of

s := mysqlm.error_message( c )

 

Last error message returned by database server.

Example

err := mysqlm.error_message( c );

Parameters

Param Mode Type Default Description
b return value string required last server message

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Error_Message;
PHP: mysql_error

mysqlm.execute( q, c )

 

Run a prepared database query.

Example

mysqlm.execute( q, c );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.show
mysqlm.execute_checked

Compare With

Ada: APQ.Execute
PHP: pg_execute

mysqlm.execute_checked( q, c [, s ] )

 

Execute the query. If an error occurs, display the message s on standard error and raise an exception. If an error occurs and there is no error message s, display the query on standard error and raise an exception.

Example

mysqlm.execute_checked( q, c, "message" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id
s in string empty string a message

Exceptions

An exception is thrown if an error occurs.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.show
mysqlm.execute

Compare With

Ada: APQ.Execute_Checked

mysqlm.fetch( q, [, i] )

 

Fetch the next query result tuple row, or a specific result row.

Example

mysqlm.fetch( q );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
i in tuple_index_type next row a specific result row

Exceptions

no_result or no_tuple exceptions may be raised.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.fetch_values

Compare With

Ada: APQ.Fetch
PHP: mysql_fetch_assoc

mysqlm.fetch_values( q, c, r )

 

Fetch the next query result tuple row into a record.

The record's fields may be boolean, numeric, string or typeless types and the names of the record's fields must be the same as the column names returned by the query. The number of fields must match the number of columns, though the order may be different.

Example

type row is record
  b : boolean;
  i : integer;
  s : string;
end record;
r : row;
...
mysqlm.prepare( Q, "SELECT b, i, s FROM sometable" );
mysqlm.execute( Q, C );
if not mysqlm.end_of_query( Q ) then
  mysqlm.fetch_values( Q, C, r );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id
r in a record required a result row

Exceptions

no_result, no_column exceptions may be raised.
no_tuple may be raised if there's no more data.
Assigning a string to a numeric or boolean field may raise an exception.
A field that is not in the query raises an exception.
A column that is not in the record raises an exception.
The wrong number of fields raises an exception.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.fetch

Compare With

Ada: N/A
PHP: mysql_fetch_array

s := mysqlm.in_abort_state( c )

 

True if in abort state. If there is no connection, return false.

Example

b := mysqlm.in_abort_state( c );

Parameters

Param Mode Type Default Description
b return value boolean required true if in abort state
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, a not connected exception will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.In_Abort_State

b := mysqlm.is_connected( c )

 

True if a connection is open to a database.

Example

b := mysqlm.is_connected( c );

Parameters

Param Mode Type Default Description
b return value boolean required true if connected
c in mysqlm.connection required MySQL connection id

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Is_Connected

b := mysqlm.is_null(q, i )

 

True if column in the fetch result is undefined.

Example

b := mysqlm.is_null( q, 2 );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
i in mysqlm.column_index_type required the field to check
b return value boolean required true if null

Exceptions

no_column and no_result exceptions may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Is_Null

b := mysqlm.is_trace( c )

 

True if set_trace was true (that is, if debug tracing is enabled).

Example

b := mysqlm.is_trace( c );

Parameters

Param Mode Type Default Description
b return value boolean required true if tracing is enabled
c in mysqlm.connection required MySQL connection id

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.close_db_trace
mysqlm.open_db_trace
mysqlm.set_trace

Compare With

Ada: APQ.Is_Trace

mysqlm.list( c )

 

Show on standard output a list of the tables available in the current database. This is the equivalent of MySQL's "show tables".

Example

mysqlm.list( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.databases
mysqlm.schema
mysqlm.users

Compare With

-

mysqlm.new_connection( c )

 

Allocate a new mysql connection and return the id. The connection will be deallocated when the variable is destroyed.

Example

mysqlm.new_connection( c );

Parameters

Param Mode Type Default Description
c out mysqlm.connection required the connection id

Exceptions

Out-of-memory

Restrictions

-

See Also

-

mysqlm.new_query( q )

 

Allocate a new mysql query and return the id. The query will be deallocated when the variable is destroyed.

Example

mysqlm.new_query( q );

Parameters

Param Mode Type Default Description
q out mysqlm.query required the query id

Exceptions

Out-of-memory

Restrictions

-

See Also

-

mysqlm.open_db_trace( c, f [,m] )

 

Begin tracing the database activity, storing the results at pathname f. m is an optional trace mode type

Example

mysqlm.open_db_trace( c, "./trace.log" );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
f in string required trace file pathname
m in db.trace_mode_type mysqlm.trace_apq trace type

Exceptions

If a connection doesn't exist, an error will occur.
not_connected, file already open, file not found exceptions may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.close_db_trace
mysqlm.is_trace
mysqlm.set_trace

Compare With

Ada: APQ.Open_DB_Trace

s := mysqlm.options( c )

 

Return database options.

Example

s := mysqlm.options( c );

Parameters

Param Mode Type Default Description
s return value string required database options
c in mysqlm.connection required MySQL connection id

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Options

mysqlm.prepare( q, s [, a] )

 

Prepare a SQL statement to execute. If a is included, insert the next statement after the statement named a.

Example

mysqlm.prepare( q, "select * from customers" );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
s in string required SQL statement
a in string after all others insert SQL statement after statement a

Exceptions

If a connection cannot be made, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Prepare

mysqlm.raise_exceptions( q, [ b ] )

 

True to raise exceptions on query errors.

Example

mysqlm.raise_exceptions( q, false );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
b in boolean true whether or not exceptions will occur

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Raise_Exceptions

mysqlm.report_errors( q, b )

 

True to report errors on query.

Example

mysqlm.report_errors( q, false );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
b in boolean true whether or not errors will be reported

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Report_Errors

mysqlm.reset( c )

 

Reset the database connection: close open files, rollback query (if necessary) and disconnect. Use disconnect instead unless you know what you are doing.

Example

mysqlm.reset( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Reset

mysqlm.rewind( q )

 

Return to the start of a query's results.

Example

mysqlm.rewind( q );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Rewind

mysqlm.rollback_work( q, c )

 

Rollback a database transaction, undoing all work since begin_work. The query will be erased.

Example

mysqlm.rollback_work( q, c );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.begin_work
mysqlm.commit_work

Compare With

Ada: APQ.Rollback_Work

mysqlm.schema( c, t )

 

Show information about the columns available in a table. This is the equivalent of MySQL's "show create table" or "desc".

Example

mysqlm.schema( c, "table" );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
t in string required name of the table

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.databases
mysqlm.list
mysqlm.users

Compare With

-

mysqlm.set_rollback_on_finalize( c, b )

 

Determine if a rollback will be issued when the connection is deallocated while the connection is still open (true) or no rollback (false). Default is true.

Example

mysqlm.set_rollback_on_finalize( c, false );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
b in boolean required true to rollback

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Set_Rollback_On_Finalize

mysqlm.set_trace( c, b )

 

Enable or disable query tracing. The trace file will remain open.

Example

mysqlm.set_trace( c, false );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id
b in boolean true whether or not tracing will occur

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.close_db_trace
mysqlm.is_trace
mysqlm.open_db_trace

Compare With

Ada: APQ.Set_Trace

mysqlm.show( q, c )

 

Run the prepared query and show the results in a table on standard output. This is often used to show the results of a SQL SELECT statement.

Example

mysqlm.show( q, c );

Parameters

Param Mode Type Default Description
q in mysqlm.query required SQL query id
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.execute
mysqlm.execute_checked

Compare With

-

t := mysqlm.tuple( q )

 

Return the result row (tuple) number from the last fetch.

Example

row_number := mysqlm.tuple( q );

Parameters

Param Mode Type Default Description
q in mysqlm.query required the query id
t return value mysqlm.tuple_index_type required the current row number

Exceptions

no_tuple exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Tuple

n := mysqlm.tuples( q )

 

Return the number of rows (tuples) from the last query.

Example

row_number := mysqlm.tuples( q );

Parameters

Param Mode Type Default Description
n return value mysqlm.tuple_count_type required the number of rows
q in mysqlm.query required the query id

Exceptions

no_result exception may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Tuples

mysqlm.users( c )

 

Show a list of database users. This is similar to MySQL's "show grants". The columns in the list depend on the database engine.

Example

mysqlm.users( c );

Parameters

Param Mode Type Default Description
c in mysqlm.connection required MySQL connection id

Exceptions

If a connection doesn't exist, an error will occur.

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

mysqlm.execute
mysqlm.execute_checked

Compare With

-

s := mysqlm.value( q, i )

 

Return the column value as a string.

Example

first_name := mysqlm.value( q, 3 );

Parameters

Param Mode Type Default Description
s return value universal_typeless required the value of the field
q in mysqlm.query required SQL query id
i in mysqlm.column_index_type required the field position to return

Exceptions

no_column, no_result, null_value and no_tuple exceptions may be raised

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Value

b := mysqlm.will_rollback_on_finalize( c )

 

True if set_rollback_on_finalize was true (that is, that when the connection is deallocated, a rollback will be issued if the connection is still open).

Example

b := mysqlm.will_rollback_on_finalize( c );

Parameters

Param Mode Type Default Description
b return value boolean required rollback will be issued on finalize

Exceptions

-

Restrictions

Not allowed in a restricted shell
Not allowed with no_mysql_database restriction

See Also

-

Compare With

Ada: APQ.Will_Rollback_On_Finalize

 
[Right Submenu]

 Summary

 arrays

 btree_io

 calendar

 cgi

 chains

 command_line

 db/ postgresql

 dbm

 directory_operations

 doubly_linked...

 dynamic_hash_...

 enums

 exceptions

 files

 gnat.cgi

 gnat.crc32

 hash_io

 lock_files

 memcache

 memcache.highread

 mysql

 mysqlm

 numerics

 os

 pen

 pen (OpenGL)

 records

 sound

 source_info

 stats

 strings

 System

 teams

 templates

 text_io

 units

[Back to Top] Back To Top [Small Forte Symbol]