Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.
clr stored procedure
clr ストアド プロシージャ
Ultimo aggiornamento 2006-09-06
Frequenza di utilizzo: 1
Qualità:
with some odbc drivers, executing a complex stored procedure may fail with an error similar to: "cannot open a cursor on a stored procedure that has anything other than a single select statement in it".
この関数により返される接続idは、他のodbc関数により使用されます。 複数の接続を同時にオープンすることができます。 オプションの4番目のパラメータは、この接続で使用されるカーソルの型を 設定します。 このパラメータは、通常は必要ありませんが、いくつかのodbcドライバ の問題に対処する際には有用です。
this interpreter will enable the server to execute tcl code provided by the client as a sort of stored procedures to improve the performance of database operations by avoiding client / server data transfers and context switches.
db++サーバは、各クライアント接続についてtclインタプリタを準備しま す。このインタプリタは、ある種のストアドプロシージャとしてクライ アントに指定されたtclコードをサーバで実行するもので、 クライアント/サーバ間のデータ伝送及びコンテキスト切替を回避し、 データベース処理性能を改善するために使用されます。
?php / / by webmaster@remoterealty.com $sth = ociparse ($dbh, "begin sp_newaddress (:address_id, '$firstname', '$lastname', '$company', '$address1', '$address2', '$city', '$state', '$postalcode', '$country', :error_code );end; "); / / this calls stored procedure sp_newaddress, with :address_id being an / / in / out variable and :error_code being an out variable. / / then you do the binding:
例 1ociに関するヒント