libgdamm
4.99.7
|
SQL parser. More...
Public Member Functions | |
virtual | ~SqlParser () |
GdaSqlParser* | gobj () |
Provides access to the underlying C GObject. More... | |
const GdaSqlParser* | gobj () const |
Provides access to the underlying C GObject. More... | |
GdaSqlParser* | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
Glib::RefPtr< Statement > | parse_string (const Glib::ustring& sql, Glib::ustring& remain) |
Parses sql and creates a Gda::Statement statement from the first SQL statement contained in sql: if sql contains more than one statement, then the remaining part of the string is not parsed at all, and remain (if not 0 ) will point at the first non parsed character. More... | |
Glib::RefPtr< Statement > | parse_string (const Glib::ustring& sql) |
Glib::RefPtr< Batch > | parse_string_as_batch (const Glib::ustring& sql, Glib::ustring& remain) |
Parse sql and creates a Gda::Batch object which contains all the Gda::Statement objects created while parsing (one object per SQL statement). More... | |
Glib::RefPtr< Batch > | parse_string_as_batch (const Glib::ustring& sql) |
Glib::RefPtr< Batch > | parse_file_as_batch (const std::string& filename) |
Parse filename's contents and creates a Gda::Batch object which contains all the Gda::Statement objects created while parsing (one object per SQL statement). More... | |
Glib::PropertyProxy_ReadOnly< int > | property_column_error () const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Glib::PropertyProxy_ReadOnly< int > | property_line_error () const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Glib::PropertyProxy< int > | property_mode () |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Glib::PropertyProxy_ReadOnly< int > | property_mode () const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Glib::PropertyProxy< int > | property_tokenizer_flavour () |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Glib::PropertyProxy_ReadOnly< int > | property_tokenizer_flavour () const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them. More... | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. More... | |
static Glib::RefPtr< SqlParser > | create () |
Protected Member Functions | |
SqlParser () | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr < Gnome::Gda::SqlParser > | wrap (GdaSqlParser* object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
SQL parser.
The Gda::SqlParser is an object dedicated to creating Gda::Statement and Gda::Batch objects from SQL strings. The actual contents of the parsed statements is represented as Gda::SqlStatement structures (which can be obtained from any Gda::Statement through the "structure" property).
Gda::SqlParser parsers can be created by calling Gda::ServerProvider::create_parser() for a provider adapted SQL parser, or using create() for a general purpose SQL parser.
The Gda::SqlParser can either work in "parse" mode where it will try to parse the SQL string, or in "delimiter" mode where it will only attempt at delimiting SQL statements in a string which may contain several SQL statements (usually separated by a semi column). If operating in "parser" mode, and the parser can't correctly parse the string, then it will switch to the "delimiter" mode for the next statement in the string to parse (and create a STATEMENT_UNKNOWN statement).
The Gda::SqlParser object parses and analyses SQL statements and reports the following statement types:
Any other type of SQL statement (CREATE TABLE, ...) creates a GdaStatement of type STATEMENT_UNKNOWN, and it only able to locate place holders (variables) and end of statement marks.
NOTE: Any SQL of a type which should be parsed which but which creates a Gda::Statement of type GDA_SQL_STATEMENT_UNKNOWN (check with Gda::Statement::get_statement_type()) should be reported as a bug.
The Gda::SqlParser object recognizes place holders (variables), which can later be queried and valued using Gda::Statement::get_parameters(). See the syntax description for the underlying GdaSqlParser.
|
virtual |
|
protected |
|
static |
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GdaSqlParser* Gnome::Gda::SqlParser::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
Glib::RefPtr<Batch> Gnome::Gda::SqlParser::parse_file_as_batch | ( | const std::string & | filename | ) |
Parse filename's contents and creates a Gda::Batch object which contains all the Gda::Statement objects created while parsing (one object per SQL statement).
filename's contents are parsed and Gda::Statement objects are created as long as no error is found. If an error is found at some point, then the parsing stops, error may be set and 0
is returned
if sql is 0
, then the returned Gda::Batch object will contain no statement.
filename | Name of the file to parse. |
0
if an error occurred. Glib::RefPtr<Statement> Gnome::Gda::SqlParser::parse_string | ( | const Glib::ustring & | sql, |
Glib::ustring & | remain | ||
) |
Parses sql and creates a Gda::Statement statement from the first SQL statement contained in sql: if sql contains more than one statement, then the remaining part of the string is not parsed at all, and remain (if not 0
) will point at the first non parsed character.
To include variables in the sql string, see the GdaSqlParser's object description.
sql | The SQL string to parse. |
remain | Location to store a pointer to remaining part of sql in case sql has multiple statement, or 0 . |
0
if an error occurred. Glib::RefPtr<Statement> Gnome::Gda::SqlParser::parse_string | ( | const Glib::ustring & | sql | ) |
Glib::RefPtr<Batch> Gnome::Gda::SqlParser::parse_string_as_batch | ( | const Glib::ustring & | sql, |
Glib::ustring & | remain | ||
) |
Parse sql and creates a Gda::Batch object which contains all the Gda::Statement objects created while parsing (one object per SQL statement).
Empty statements (composed of spaces only) do not appear in the resulting object.
sql is parsed and Gda::Statement objects are created as long as no error is found in sql. If an error is found at some point, then the parsing stops and remain may contain a non 0
pointer, error may be set, and 0
is returned.
if sql is 0
, then the returned Gda::Batch object will contain no statement.
To include variables in the sql string, see the GdaSqlParser's object description.
sql | The SQL string to parse. |
remain | Location to store a pointer to remaining part of sql in case an error occurred while parsing sql, or 0 . |
0
if an error occurred. Glib::RefPtr<Batch> Gnome::Gda::SqlParser::parse_string_as_batch | ( | const Glib::ustring & | sql | ) |
Glib::PropertyProxy_ReadOnly< int > Gnome::Gda::SqlParser::property_column_error | ( | ) | const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly< int > Gnome::Gda::SqlParser::property_line_error | ( | ) | const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy< int > Gnome::Gda::SqlParser::property_mode | ( | ) |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly< int > Gnome::Gda::SqlParser::property_mode | ( | ) | const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy< int > Gnome::Gda::SqlParser::property_tokenizer_flavour | ( | ) |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly< int > Gnome::Gda::SqlParser::property_tokenizer_flavour | ( | ) | const |
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |