You can insert an XPath query into an SQL query.
SQL クエリに XPath クエリを挿入することができます。 - PEAR
The SQL editor's code completion lets you insertschema, table and column names more quickly.It also lets you browse the history of all SQL statements,filter by search terms and/or by connection URLs,and then insert the selected statement.You can sort query results in the SQL Editor and load large returned data sets page by page.You can directly change values of returned results and insert or delete rows. SQL エディタのコード補完を使用すると、スキーマ、表、および列名をよりすばやく挿入できます。 - NetBeans
The class methods provides a convenient API for constructing and submitting INSERT, UPDATE, DELETE, and SELECT SQL commands, and for creation of a RDBMS database table from the defined schema.
クラスメソッドとしては、SQL コマンド INSERT やUPDATE、DELETE、SELECT を作成したり発行したりする便利な APIが用意されています。 また、定義済みのスキーマからRDBMS のテーブルを作成するメソッドもあります。 - PEAR
The example above is just meant to show what you can do with prepared statements, but if you use MDB2 because you heart portability, then be sure you're using a standard SQL syntax (hint: the db1 INSERT is correct).
上の例は、単に「プリペアドステートメントではこんなこともできますよ」ということを示すためだけのものです。 可搬性が高いからという理由でMDB2 を採用されるのなら、標準的な SQL構文を使うようにしましょう (ヒント: この例の場合、db1 のINSERT のほうが正解です)。 - PEAR
A DATABASE (database) building-in part 3 determines a data storing table based on the table name in the template file, the number of data inputs based on the number of columns, a KEY column based on the KEY name, and an input processing (INSERT, UPDATE) based on the processing section, produces and issues an SQL sentence, and stores data. DATABASE(データベース)組込3は、テンプレートファイルのテーブル名でデータ格納テーブルを判断し、同ファイルのカラム数からデータの入力数、KEY名からKEYとなる列、処理区分から入力処理(INSERT、UPDATE)を判断し、SQL文の作成、発行を行いデータを格納する。 - 特許庁