MATLAB DATABASE TOOLBOX RELEASE NOTES Guide de l'utilisateur Page 569

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 684
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 568
fetch
7-139
fetch
Import data into MATLAB workspace from cursor object or from execution of SQL
statement
Syntax
curs = fetch(curs)
curs = fetch(curs,rowlimit)
curs = fetch(curs,Name,Value)
curs = fetch(curs,rowlimit,Name,Value)
results = fetch(conn,sqlquery)
results = fetch(conn,sqlquery,fetchbatchsize)
Description
curs = fetch(curs) imports all rows of data into the cursor object curs from the
open SQL cursor object curs.
curs = fetch(curs,rowlimit) imports rows of data up to the maximum number of
rows rowlimit.
curs = fetch(curs,Name,Value) imports rows of data using a scrollable cursor.
curs = fetch(curs,rowlimit,Name,Value) imports rows of data up to the
maximum number of rows rowlimit using a scrollable cursor.
results = fetch(conn,sqlquery) executes the SQL statement sqlquery, imports all
rows of data in batches for the open database connection conn, and returns the resulting
data results.
results = fetch(conn,sqlquery,fetchbatchsize) imports all rows of data in
batches of a specified number of rows fetchbatchsize at a time.
Vue de la page 568
1 2 ... 564 565 566 567 568 569 570 571 572 573 574 ... 683 684

Commentaires sur ces manuels

Pas de commentaire