EnglishFrenchSpanish

Ad


OnWorks favicon

mdb-sql - Online in the Cloud

Run mdb-sql in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command mdb-sql that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


mdb-sql - SQL interface to MDB Tools

SYNOPSIS


mdb-sql [-HFp] [-d delimiter] [-i file] [-o file] [database]

DESCRIPTION


mdb-sql is a utility program distributed with MDB Tools.

mdb-sql allows querying of an MDB database using a limited SQL subset language.

OPTIONS


-H Suppress header row.

-F Suppress footer row.

-p Turn off pretty printing. By default results are printed in an ascii table format
which looks nice but is not conducive to manipulating the output with unix tools.
This option prints output plainly in a tab separated format.

-d Specify an alternative column delimiter. If no delimiter is specified, columns will
be delimited by a tab character if pretty printing (-p) is turned off. If pretty
printing is enabled this option is meaningless.

-i Specify an input file. This option allows an input file containing the SQL to be
passed to mdb-sql. See Notes.

-o Specify an output file. This option allows the name of an output file to be used
instead of stdout.

COMMANDS


mdb-sql in interactive mode takes some special commands.

connect to <database>
If no database was specified on the command line this command is necessary before
any querys are issued. It also allows the switching of databases once in the tool.

disconnect
Will disconnect from the current database.

go Each batch is sent to the parser using the 'go' command.

reset A batch can be cleared using the 'reset' command.

list tables
The list tables command will display a list of available tables in this database,
similar to the mdb-tables utility on the command line.

describe table <table>
Will display the column information for the specified table.

quit Will exit the tool.

SQL LANGUAGE


The currently implemented SQL subset is quite small, supporting only single table queries,
no aggregates, and limited support for WHERE clauses. Here is a brief synopsis of the
supported language.

select:
SELECT [* | <column list>] FROM <table> WHERE <where clause>

column list:
<column> [, <column list>]

where clause:
<column> <operator> <literal> [AND <where clause>]

operator:
=, =>, =<, <>, like, <, >

literal:
integers, floating point numbers, or string literal in single quotes

NOTES


When passing a file (-i) or piping output to mdb-sql the final 'go' is optional. This
allow constructs like

echo "Select * from Table1" | mdb-sql mydb.mdb

to work correctly.

The -i command can be passed the string 'stdin' to test entering text as if using a pipe.

ENVIRONMENT


MDB_JET3_CHARSET
Defines the charset of the input JET3 (access 97) file. Default is CP1252. See
iconv(1).

MDBICONV
Defines the output charset. Default is UTF-8. mdbtools must have been compiled with
iconv.

MDBOPTS
semi-column separated list of options:

· use_index

· no_memo

· debug_like

· debug_write

· debug_usage

· debug_ole

· debug_row

· debug_props

· debug_all is a shortcut for all debug_* options

HISTORY


mdb-sql first appeared in MDB Tools 0.3.

Use mdb-sql online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    VASSAL Engine
    VASSAL Engine
    VASSAL is a game engine for creating
    electronic versions of traditional board
    and card games. It provides support for
    game piece rendering and interaction,
    and...
    Download VASSAL Engine
  • 2
    OpenPDF - Fork of iText
    OpenPDF - Fork of iText
    OpenPDF is a Java library for creating
    and editing PDF files with a LGPL and
    MPL open source license. OpenPDF is the
    LGPL/MPL open source successor of iText,
    a...
    Download OpenPDF - Fork of iText
  • 3
    SAGA GIS
    SAGA GIS
    SAGA - System for Automated
    Geoscientific Analyses - is a Geographic
    Information System (GIS) software with
    immense capabilities for geodata
    processing and ana...
    Download SAGA GIS
  • 4
    Toolbox for Java/JTOpen
    Toolbox for Java/JTOpen
    The IBM Toolbox for Java / JTOpen is a
    library of Java classes supporting the
    client/server and internet programming
    models to a system running OS/400,
    i5/OS, o...
    Download Toolbox for Java/JTOpen
  • 5
    D3.js
    D3.js
    D3.js (or D3 for Data-Driven Documents)
    is a JavaScript library that allows you
    to produce dynamic, interactive data
    visualizations in web browsers. With D3
    you...
    Download D3.js
  • 6
    Shadowsocks
    Shadowsocks
    A fast tunnel proxy that helps you
    bypass firewalls This is an application
    that can also be fetched from
    https://sourceforge.net/projects/shadowsocksgui/.
    It ha...
    Download Shadowsocks
  • More »

Linux commands

Ad