SQLResultSetRead[rs] shifts the current position and then reads a row from a result set.SQLResultSetRead[rs, num] reads num rows from a result set.
SQLTableTypeNames[conn] returns the types of table supported in an SQL connection.
SQLUpdate[conn, table, cols, data] updates data in a table in an SQL connection.
SQLDelete deletes data from a database. An alternative, using raw SQL, is described in "Deleting Data with Raw SQL". If you find that the examples in this tutorial do not ...
SQLInsert inserts data into a database. An alternative, using raw SQL, is described in "Inserting Data with Raw SQL". If you find that the examples in this tutorial do not ...
Secure Socket Layer (SSL) is a protocol for providing secure transactions between servers and clients. It uses a certificate to identify one or both ends of the transaction. ...
Many SQL databases can be configured to require a username and password when a connection is made. This is useful for preventing unwanted access and restricting the range of ...
SQLUpdate modifies data in a database. An alternative, using raw SQL, is described in "Updating Data with Raw SQL". If you find that the examples in this tutorial do not work ...
DefineDLLFunction["func", " dll", rtype, atypes] returns a Mathematica function that calls the specified function func with argument types atypes and return type rtype in the ...
NETTypeInfo[type] prints information about the specified type, including its inheritance hierarchy, assembly name, and its public members (constructors, methods, properties, ...