MaxDB PHP Extension MaxDB
&reftitle.intro; The MaxDB PHP extension allows you to access the functionality provided by MaxDB 7.5.0 and above. More information about the MaxDB Database server can be found at &url.maxdb;. Documentation for MaxDB can be found at &url.maxdb.doc;.
&reftitle.required; In order to have these functions available, you must compile PHP with MaxDB support.Additionally, you must have the MaxDB SQLDBC runtime library available to access the MaxDB server. Documentation for MaxDB SQLDBC can be found at &url.maxdb.doc;. Download the MaxDB SQLDBC package from &url.maxdb.sdbc;.
&reference.maxdb.configure; &reference.maxdb.ini; &reference.maxdb.constants;
&reftitle.examples; All examples in the MaxDB PHP documentation use the HOTELDB demo database from MaxDB. More about this database can be found at &url.maxdb.sampledb;. This simple example shows how to connect, execute a query, print resulting rows and disconnect from a MaxDB database. MaxDB extension overview example \n"; while ($line = maxdb_fetch_array($result, MAXDB_ASSOC)) { echo "\t\n"; foreach ($line as $col_value) { echo "\t\t$col_value\n"; } echo "\t\n"; } echo "\n"; /* Free resultset */ maxdb_free_result($result); /* Closing connection */ maxdb_close($link); ?> ]]>
&reference.maxdb.functions;