2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2006-03-09 18:50:23 +00:00
|
|
|
<!-- $Revision: 1.4 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/mssql.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.mssql-connect">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>mssql_connect</refname>
|
|
|
|
<refpurpose>Open MS SQL server connection</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
2005-04-11 21:20:04 +00:00
|
|
|
<type>resource</type><methodname>mssql_connect</methodname>
|
2002-04-15 00:12:54 +00:00
|
|
|
<methodparam choice="opt"><type>string</type><parameter>servername</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>username</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>password</parameter></methodparam>
|
2006-03-09 18:50:23 +00:00
|
|
|
<methodparam choice="opt"><type>bool</type><parameter>new_link</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2005-04-11 21:20:04 +00:00
|
|
|
Returns: A MS SQL link identifier on success, or &false;
|
2002-04-15 00:12:54 +00:00
|
|
|
on error.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<function>mssql_connect</function> establishes a connection to a
|
|
|
|
MS SQL server. The servername argument has to be a valid
|
|
|
|
servername that is defined in the 'interfaces' file.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
In case a second call is made to
|
|
|
|
<function>mssql_connect</function> with the same arguments, no
|
|
|
|
new link will be established, but instead, the link identifier of
|
|
|
|
the already opened link will be returned.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The link to the server will be closed as soon as the execution of
|
|
|
|
the script ends, unless it's closed earlier by explicitly calling
|
|
|
|
<function>mssql_close</function>.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
See also <function>mssql_pconnect</function>,
|
|
|
|
<function>mssql_close</function>.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|