USING
You can use the module by loading it in your PHP script and calling SQL Relay functions.
For example:
dl("sql_relay.so");$con=sqlrcon_alloc("adasz",9000,"","user1","password1",0,1);$cur=sqlrcur_alloc($con);sqlrcur_sendQuery($cur,"select table_name from user_tables");sqlrcon_endSession($con);for ($i=0; $i<sqlrcur_rowCount($cur); $i++){ printf("%s\n",sqlrcur_getField($cur,$i,"table_name"));}sqlrcur_free($cur);sqlrcon_free($con);
An alternative to running dl(sql_relay.so) is to put a line like:
extension=sql_relay.soIn your php.ini file. Doing this will improve performance as the library isn't loaded and unloaded each time a script runs, but only once when the web-server is started.
FUNCTIONS int sqlrcon_alloc(string server, int port, string socket, string user, string password, int retrytime, int tries)Initiates a connection to "server" on "port" or to the unix "socket" on the local machine and authenticates with "user" and "password". Failed connections will be retried for "tries" times on interval "retrytime". If "tries" is 0 then retries will continue forever. If "retrytime" is 0 then retries will be attempted on a default interval.
If the "socket" parameter is nether NULL nor "" then an attempt will be made to connect through it before attempting to connect to "server" on "port". If it is NULL or "" then no attempt will be made to connect through the socket.*/
void sqlrcon_free(int sqlrconref)
Disconnects and terminates the session if it hasn't been terminated already.
void sqlrcon_setTimeout(int timeoutsec, int timeoutusec)
Sets the server connect timeout in seconds and milliseconds. Setting either parameter to -1 disables the timeout.
void sqlrcon_endSession(int sqlrconref)
terminates the session
void sqlrcon_suspendSession(int sqlrconref)
Disconnects this client from the current session but leaves the session open so that another client can connect to it using sqlrcon_resumeSession().
int sqlrcon_getConnectionPort(int sqlrconref)
Returns the inet port that the client is communicating over. This parameter may be passed to another client for use in the sqlrcon_resumeSession() command. Note: the value returned by this function is only valid after a call to sqlrcur_suspendSession().
string sqlrcon_getConnectionSocket(int sqlrconref)
Returns the unix socket that the client is communicating over. This parameter may be passed to another client for use in the sqlrcon_resumeSession() command. Note: the value returned by this function is only valid after a call to sqlrcur_suspendSession().
int sqlrcon_resumeSession(int sqlrconref, int port, string socket)
Resumes a session previously left open using sqlrcon_suspendSession(). Returns 1 on success and 0 on failure.
int sqlrcon_ping(int sqlrconref)
Returns 1 if the database is up and 0 if it's down.
string sqlrcon_identify(int sqlrconref)
Returns the type of database: oracle8, postgresql, mysql, etc.
string sqlrcon_dbVersion(int sqlrconref)
Returns the version of the database
string sqlrcon_serverVersion(int sqlrconref)
Returns the version of the SQL Relay server software
string sqlrcon_clientVersion(int sqlrconref)
Returns the version of the SQL Relay client software
string sqlrcon_bindFormat(int sqlrconref)
Returns a string representing the format of the bind variables used in the db.
int sqlrcon_autoCommitOn(int sqlrconref)
Instructs the database to perform a commit after every successful query.
int sqlrcon_autoCommitOff(int sqlrconref)
Instructs the database to wait for the client to tell it when to commit.
int sqlrcon_commit(int sqlrconref)
Issues a commit. Returns 1 if the commit succeeded, 0 if it failed and -1 if an error occurred.
int sqlrcon_rollback(int sqlrconref)
Issues a rollback. Returns 1 if the rollback succeeded, 0 if it failed and -1 if an error occurred.
void sqlrcon_debugOn(int sqlrconref)
Causes verbose debugging information to be sent to standard output. Another way to do this is to start a query with "-- debug\n".
void sqlrcon_debugOff(int sqlrconref)
turns debugging off
int sqlrcon_getDebug(int sqlrconref)
returns FALSE if debugging is off and TRUE if debugging is on
int sqlrcur_alloc(int sqlrconref) void sqlrcur_free(int sqlrcur) void sqlrcur_setResultSetBufferSize(int sqlrcurref, int rows)
Sets the number of rows of the result set to buffer at a time. 0 (the default) means buffer the entire result set.
int sqlrcur_getResultSetBufferSize(int sqlrcurref)
Returns the number of result set rows that will be buffered at a time or 0 for the entire result set.
void sqlrcur_dontGetColumnInfo(int sqlrcurref)
Tells the server not to send any column info (names, types, sizes). If you don't need that info, you should call this function to improve performance.
void sqlrcur_mixedCaseColumnNames(int sqlrcurref)
Columns names are returned in the same case as they are defined in the database. This is the default.
void sqlrcur_upperCaseColumnNames(int sqlrcurref)
Columns names are converted to upper case.
void sqlrcur_lowerCaseColumnNames(int sqlrcurref)
Columns names are converted to lower case.
void sqlrcur_getColumnInfo(int sqlrcurref)
Tells the server to send column info.
void sqlrcur_cacheToFile(int sqlrcurref, string filename)
Sets query caching on. Future queries will be cached to the file "filename". A default time-to-live of 10 minutes is also set. Note that once sqlrcur_cacheToFile() is called, the result sets of all future queries will be cached to that file until another call to sqlrcur_cacheToFile() changes which file to cache to or a call to sqlrcur_cacheOff() turns off caching.
void sqlrcur_setCacheTtl(int sqlrcurref, int ttl)
Sets the time-to-live for cached result sets. The sqlr-cachemanger will remove each cached result set "ttl" seconds after it's created.
string sqlrcur_getCacheFileName(int sqlrcurref)
Returns the name of the file containing the most recently cached result set.
void sqlrcur_cacheOff(int sqlrcurref)
Sets query caching off.
If you don't need to use substitution or bind variables in your queries, use these two functions.
int sqlrcur_sendQuery(int sqlrcurref, string query)
Sends "query" and gets a return set. Returns TRUE on success and FALSE on failure.
int sqlrcur_sendQueryWithLength(int sqlrcurref, string query, int length)
Sends "query" with length "length" and gets a result set. This function must be used if the query contains binary data.
int sqlrcur_sendFileQuery(int sqlrcurref, string path, string filename)
Sends the query in file "path"/"filename" and gets a return set. Returns TRUE on success and FALSE on failure.
If you need to use substitution or bind variables, in your queries use the following functions. See the API documentation for more information about substitution and bind variables.
void sqlrcur_prepareQuery(int sqlrcurref, string query)
Prepare to execute "query".
void sqlrcur_prepareQueryWithLength(int sqlrcurref, string query, int length)
Prepare to execute "query" with length "length". This function must be used if the query contains binary data.
void sqlrcur_prepareFileQuery(int sqlrcurref, string path, string filename)
Prepare to execute the contents of "path"/"filename".
void sqlrcur_substitution(int sqlrcurref, string variable, string value)
void sqlrcur_substitution(int sqlrcurref, string variable, long value)
void sqlrcur_substitution(int sqlrcurref, string variable, double value, short precision, short scale)
Define a substitution variable. Returns true if the substitution succeeded or false if the type of the data passed in wasn't a string, long or double or if precision and scale weren't passed in for a double.
void sqlrcur_clearBinds(int sqlrcurref)
Clear all bind variables.
void sqlrcur_countBindVariables(int sqlrcurref)
Parses the previously prepared query, counts the number of bind variables defined in it and returns that number.
void sqlrcur_inputBind(int sqlrcurref, string variable, string value)
void sqlrcur_inputBind(int sqlrcurref, string variable, long value)
void sqlrcur_inputBind(int sqlrcurref, string variable, double value, short precision, short scale)
void sqlrcur_inputBindBlob(int sqlrcurref, string variable, long length)
void sqlrcur_inputBindClob(int sqlrcurref, string variable, long length)
Define an input bind variable. Returns true if the bind succeeded or false if the type of the data passed in wasn't a string, long or double or if precision and scale weren't passed in for a double.
void sqlrcur_defineOutputBindString(int sqlrcurref, string variable, int length)
Define a string output bind variable. "length" bytes will be reserved to store the value.
void sqlrcur_defineOutputBindInteger(int sqlrcurref, string variable)
Define an integer output bind variable.
void sqlrcur_defineOutputBindDouble(int sqlrcurref, string variable)
Define a double precision floating point output bind variable.
void sqlrcur_defineOutputBindBlob(int sqlrcurref, string variable)
Define a BLOB output bind variable.
void sqlrcur_defineOutputBindClob(int sqlrcurref, string variable)
Define a CLOB output bind variable.
void sqlrcur_defineOutputBindCursor(int sqlrcurref, string variable)
Define a cursor output bind variable.
void sqlrcur_validateBinds(int sqlrcurref)
If you are binding to any variables that might not actually be in your query, call this to ensure that the database won't try to bind them unless they really are in the query.
void sqlrcur_validBind(int sqlrcurref, string variable)
Returns true if "variable" was a valid bind variable of the query.
int sqlrcur_executeQuery(int sqlrcurref)
Execute the query that was previously prepared and bound.
int sqlrcur_fetchFromBindCursor(int sqlrcurref)
Fetch from a cursor that was returned as an output bind variable.
int sqlrcur_getOutputBindString(int sqlrcurref, string variable)
Get the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindBlob(int sqlrcurref, string variable)
Get the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindClob(int sqlrcurref, string variable)
Get the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindInteger(int sqlrcurref, string variable)
Get the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindDouble(int sqlrcurref, string variable)
Get the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindLength(int sqlrcurref, string variable)
Get the length of the value stored in a previously defined output bind variable.
int sqlrcur_getOutputBindCursor(int sqlrcurref, string variable)
Get the cursor associated with a previously defined output bind variable.
int sqlrcur_openCachedResultSet(int sqlrcurref, string filename)
Opens a cached result set as if a query that would have generated it had been executed. Returns TRUE on success and FALSE on failure.
int sqlrcur_colCount(int sqlrcurref)
returns the number of columns in the current return set
int sqlrcur_rowCount(int sqlrcurref)
returns the number of rows in the current return set
int sqlrcur_totalRows(int sqlrcurref)
Returns the total number of rows that will be returned in the result set. Not all databases support this call. Don't use it for applications which are designed to be portable across databases. -1 is returned by databases which don't support this option.
int sqlrcur_affectedRows(int sqlrcurref)
Returns the number of rows that were updated, inserted or deleted by the query. Not all databases support this call. Don't use it for applications which are designed to be portable across databases. -1 is returned by databases which don't support this option.
int sqlrcur_firstRowIndex(int sqlrcurref)
Returns the index of the first buffered row. This is useful when buffering only part of the result set at a time.
int sqlrcur_endOfResultSet(int sqlrcurref)
Returns 0 if part of the result set is still pending on the server and 1 if not. This function can only return 0 if setResultSetBufferSize() has been called with a parameter other than 0.
string sqlrcur_errorMessage(int sqlrcurref)
If a query failed and generated an error, the error message is available here. If the query succeeded then this function returns FALSE
string sqlrcur_getNullsAsEmptyStrings(int sqlrcurref)
Tells the client to return NULL fields and output bind variables as empty strings. This is the default.
string sqlrcur_getNullsAsNulls(int sqlrcurref)
Tells the client to return NULL fields and output bind variables as NULL's.
string sqlrcur_getField(int sqlrcurref, int row, int col)
returns a string with value of the specified row and column
string sqlrcur_getFieldLength(int sqlrcurref, int row, int col)
returns the length of the specified row and column
array sqlrcur_getRow(int sqlrcurref, int row)
returns an indexed array of the values of the specified row
array sqlrcur_getRowLengths(int sqlrcurref, int row)
returns an indexed array of the lengths of the specified row
array sqlrcur_getRowAssoc(int sqlrcurref, int row)
returns an associative array of the values of the specified row
array sqlrcur_getRowLengthsAssoc(int sqlrcurref, int row)
returns an associative array of the lengths of the specified row
array sqlrcur_getColumnNames(int sqlrcurref)
returns the array of the column names of the current return set
string sqlrcur_getColumnName(int sqlrcurref, int col)
returns the name of the specified column
string sqlrcur_getColumnType(int sqlrcurref, string col)
string sqlrcur_getColumnType(int sqlrcurref, int col)
returns the type of the specified column
int sqlrcur_getColumnLength(int sqlrcurref, string col)
int sqlrcur_getColumnLength(int sqlrcurref, int col)
returns the length of the specified column.
int sqlrcur_getColumnPrecision(int sqlrcurref, string col);
int sqlrcur_getColumnPrecision(int sqlrcurref, int col);
Returns the precision of the specified column. Precision is the total number of digits in a number. eg: 123.45 has a precision of 5. For non-numeric types, it's the number of characters in the string.
int sqlrcur_getColumnScale(int sqlrcurref, string col);
int sqlrcur_getColumnScale(int sqlrcurref, int col);
Returns the scale of the specified column. Scale is the total number of digits to the right of the decimal point in a number. eg: 123.45 has a scale of 2.
int sqlrcur_getColumnIsNullable(int sqlrcurref, string col);
int sqlrcur_getColumnIsNullable(int sqlrcurref, int col);
Returns 1 if the specified column can contain nulls and 0 otherwise.
int sqlrcur_getColumnIsPrimaryKey(int sqlrcurref, string col);
int sqlrcur_getColumnIsPrimaryKey(int sqlrcurref, int col);
Returns 1 if the specified column is a primary key and 0 otherwise.
int sqlrcur_getColumnIsUnique(int sqlrcurref, string col);
int sqlrcur_getColumnIsUnique(int sqlrcurref, int col);
Returns 1 if the specified column is unique and 0 otherwise.
int sqlrcur_getColumnIsPartOfKey(int sqlrcurref, string col);
int sqlrcur_getColumnIsPartOfKey(int sqlrcurref, int col);
Returns 1 if the specified column is part of a composite key and 0 otherwise.
int sqlrcur_getColumnIsUnsigned(int sqlrcurref, string col);
int sqlrcur_getColumnIsUnsigned(int sqlrcurref, int col);
Returns 1 if the specified column is an unsigned number and 0 otherwise.
int sqlrcur_getColumnIsZeroFilled(int sqlrcurref, string col);
int sqlrcur_getColumnIsZeroFilled(int sqlrcurref, int col);
Returns 1 if the specified column was created with the zero-fill flag and 0 otherwise.
int sqlrcur_getColumnIsBinary(int sqlrcurref, string col);
int sqlrcur_getColumnIsBinary(int sqlrcurref, int col);
Returns 1 if the specified column contains binary data and 0 otherwise.
int sqlrcur_getColumnIsAutoIncrement(int sqlrcurref, string col);
int sqlrcur_getColumnIsAutoIncrement(int sqlrcurref, int col);
Returns 1 if the specified column auto-increments and 0 otherwise.
int sqlrcur_getLongest(int sqlrcurref, string col)
int sqlrcur_getLongest(int sqlrcurref, int col)
Returns the length of the longest field in the specified column.
void sqlrcur_suspendResultSet(int sqlrcurref)
Tells the server to leave this result set open when the connection calls suspendSession() so that another connection can connect to it using resumeResultSet() after it calls resumeSession().
int sqlrcur_getResultSetId(int sqlrcurref)
Returns the internal ID of this result set. This parameter may be passed to another statement for use in the resumeResultSet() function. Note: the value returned by this function is only valid after a call to sqlrcur_suspendResultSet().
void sqlrcur_resumeResultSet(int sqlrcurref, int id)
Resumes a result set previously left open using suspendSession(). Returns 1 on success and 0 on failure.
void sqlrcur_resumeCachedResultSet(int sqlrcurref, int id, string filename)
Resumes a result set previously left open using suspendSession() and continues caching the result set to "filename". Returns 1 on success and 0 on failure.
AUTHOR Adam Kropielnicki
adasz@wp.pl

PHP中API如何处理异常处理和重试机制在PHP中,API已经成为许多网站和应用程序的核心,因为它们提供各种功能和功能。然而,在使用API时,我们经常会遇到许多问题,如网络连接问题,响应超时,无效请求等。在这种情况下,我们需要了解如何处理异常和重试机制来确保我们的应用程序的可靠性和稳定性。异常处理在PHP中,异常处理是一种更加优雅和可读的错误处

PHP快手API接口开发指南:如何构建视频下载和上传系统引言:随着社交媒体的蓬勃发展,越来越多的人喜欢在互联网上分享自己的生活点滴。其中,短视频平台的受欢迎程度持续升高,已成为人们记录并分享自己生活、娱乐的重要方式。PHP快手API接口是一个强大的工具,可以帮助开发者构建功能丰富的视频下载和上传系统。在本文中,我们将探讨如何使用PHP快手API接口来开发一个

PHP是一种非常流行的服务器端脚本语言,广泛应用于Web开发。在Web开发中,API是非常重要的组成部分,负责与客户端进行通信。其中,API的性能和效率对于一个应用程序的用户体验非常重要。在API开发过程中,缓存和冗余数据是两个重要的概念,本文将介绍如何在PHP中处理它们,以提高API的性能和可靠性。一、缓存概念缓存是一种在Web应用程序中广泛使用的优化技术

通过PHP快手API接口,实现视频的收藏和分享在移动互联网时代,短视频已成为人们生活中不可或缺的一部分。快手作为中国主流的短视频社交平台,拥有庞大的用户群体。为了提升用户体验,我们可以通过PHP快手API接口实现视频的收藏和分享功能,让用户更方便地管理和分享自己喜欢的视频。一、使用快手API快手提供了丰富的API接口,包括视频搜索、视频详情、视频收藏和视频分

随着社交媒体的普及,越来越多的人开始利用Twitter等社交媒体平台来进行营销和推广。这种方式很有效,但需要花费大量的时间和精力来保持活跃度。如果你想在Twitter上推广自己的品牌或服务,但又没有足够的时间或资源来管理一个活跃的Twitter账户,那么你可以考虑使用Twitter机器人。Twitter机器人是一种自动化工具,它可以帮助你在Twitter上自

在现代的Web应用程序中,API接口通常是实现服务接口化的一种方式。PHP语言在实现这样的API接口时,需要考虑如何处理多个API客户端的情况。在一般情况下,每个API客户端的请求都会经过PHP实现的RESTful接口进行处理。但是,当需要应对大量的API客户端请求时,如何提高接口处理效率,减少系统开销,这变成了一个亟待解决的

PHP快手API接口开发指南:如何构建视频播放和评论系统引言:随着快手(Kuaishou)平台的崛起,许多开发者通过其API接口开发了各种各样的应用程序。本文将介绍如何使用PHP开发快手视频播放和评论系统的API接口,帮助读者快速上手并构建自己的应用程序。一、准备工作在开始之前,您需要确保您已经完成以下准备工作:安装PHP环境:您需要在本地开发环境搭建好PH

PHP作为一种广泛被使用的编程语言,已经成为了Web应用程序开发的主要工具之一。当应用程序需要与多个外部系统(如数据库、其他Web服务或第三方服务器)进行交互时,使用API是一种流行的实现方式。然而,在使用PHP编写API时,错误处理是非常重要的一环。良好的错误处理方法不仅可以不断提高应用程序的可靠性和健壮性,还可以极大地改善API的使用体验。下面介绍一些最


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
