[SQL Relay文档] SQL Relay用于PHP API的程序设计 (英文)

本文介绍如何使用PHP API进行SQLRelay编程,涵盖建立会话、执行查询、事务管理等内容,并详细讲解了错误处理、变量绑定及结果集处理等高级特性。

Programming with SQL Relay using the PHP API

Establishing a Session

To use SQL Relay, you have to identify the connection that you intend to use.

     "";

     sqlrcon_alloc"",,"","","",,;

      execute some queries 

     sqlrcon_free;

An alternative to running dl(sql_relay.so) is to put a line like:

extension=sql_relay.so

In 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.

After calling the constructor, a session is established when the first query, sqlrcur_ping() or sqlrcur_identify() is run.

For the duration of the session, the client stays connected to a database connection daemon. While one client is connected, no other client can connect. Care should be taken to minimize the length of a session.

If you're using a transactional database, ending a session has a catch. Database connection daemons can be configured to send either a commit or rollback at the end of a session if DML queries were executed during the session with no commit or rollback. Program accordingly.

Executing Queries

Call sqlrcur_sendQuery() or sqlrcur_sendFileQuery() to run a query.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_sendQuery,"";

       some stuff that takes a short  

     sqlrcur_sendFileQuery,"","";
     sqlrcon_endSession;

       some stuff that takes a long  

     sqlrcur_sendQuery,"";
     sqlrcon_endSession;

      process the result set 

     sqlrcur_free;
     sqlrcon_free;

Note the call to sqlrcur_endSession() after the call to sqlrcur_sendFileQuery(). Since the program does some stuff that takes a long time between that query and the next, ending the session there allows another client an opportunity to use that database connection while your client is busy. The next call to sqlrcur_sendQuery() establishes another session. Since the program does some stuff that takes a short time between the first two queries, it's OK to leave the session open between them.

Commits and Rollbacks

If you need to execute a commit or rollback, you should use the sqlrcon_commit() and sqlrcon_rollback() functions rather than sending a "commit" or "rollback" query. There are two reasons for this. First, it's much more efficient to call the functions. Second, if you're writing code that can run on transactional or non-transactional databases, some non-transactional databases will throw errors if they receive a "commit" or "rollback" query, but by calling the sqlrcon_commit() and sqlrcon_rollback() functions you instruct the database connection daemon to call the commit and rollback API functions for that database rather than issuing them as queries. If the API's have no commit or rollback functions, the calls do nothing and the database throws no error. This is especially important when using SQL Relay with ODBC.

You can also turn Autocommit on or off with the sqlrcon_autoCommitOn() and sqlrcon_autoCommitOff() functions. When Autocommit is on, the database performs a commit after each successful DML or DDL query. When Autocommit is off, the database commits when the client instructs it to, or (by default) when a client disconnects. For databases that don't support Autocommit, sqlrcon_autoCommitOn() and sqlrcon_autoCommitOff() have no effect.

Temporary Tables

Some databases support temporary tables. That is, tables which are automatically dropped or truncated when an application closes it's connection to the database or when a transaction is committed or rolled back.

For databases which drop or truncate tables when a transaction is committed or rolled back, temporary tables work naturally.

However, for databases which drop or truncate tables when an application closes it's connection to the database, there is an issue. Since SQL Relay maintains persistent database connections, when an application disconnects from SQL Relay, the connection between SQL Relay and the database remains, so the database does not know to drop or truncate the table. To remedy this situation, SQL Relay parses each query to see if it created a temporary table, keeps a list of temporary tables and drops (or truncates them) when the application disconnects from SQL Relay. Since each database has slightly different syntax for creating a temporary table, SQL Relay parses each query according to the rules for that database.

In effect, temporary tables should work when an application connects to SQL Relay in the same manner that they would work if the application connected directly to the database.

Catching Errors

If your call to sqlrcur_sendQuery() or sqlrcur_sendFileQuery() returns a 0, the query failed. You can find out why by calling sqlrcur_errorMessage().

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

      sqlrcur_sendQuery,"" 
              sqlrcur_errorMessage;
              "";
     

     sqlrcur_free;
     sqlrcon_free;

Substitution and Bind Variables

Programs rarely execute fixed queries. More often than not, some part of the query is dynamically generated. The SQL Relay API provides methods for making substitutions and binds in those queries.

For a detailed discussion of substitutions and binds, see this document.

Rather than just calling sendQuery() you call prepareQuery(), substitution(), inputBind() and executeQuery(). If you using queries stored in a file, you can call prepareFileQuery() instead of prepareQuery().

When passing a floating point number in as a bind or substitution variable, you have to supply precision and scale for the number. See this page for a discussion of precision and scale.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_prepareQuery,""
     sqlrcur_substitution,"","";
     sqlrcur_inputBind,"","";
     sqlrcur_inputBind,"",;
     sqlrcur_inputBind,"",,,;
     sqlrcur_executeQuery;

      process the result set 

     sqlrcur_free;
     sqlrcon_free;


If you are curious how many bind variables have been declared in a query, you can call countBindVariables() after preparing the query.

If you're using a database with an embedded procedural language, you may want to retrieve data from function calls. To facilitate this, SQL Relay provides methods for defining and retrieving output bind variables.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_prepareQuery,"";
     sqlrcur_inputBind,"",;
     sqlrcur_inputBind,"",;
     sqlrcur_inputBind,"",,,;
     sqlrcur_inputBind,"",,,;
     sqlrcur_inputBind,"",;
     sqlrcur_defineOutputBindInteger,"";
     sqlrcur_defineOutputBindDouble,"";
     sqlrcur_defineOutputBindString,"",;
     sqlrcur_executeQuery;
     sqlrcur_getOutputBindInteger,"";
     sqlrcur_getOutputBindDouble,"";
     sqlrcur_getOutputBindString,"";
     sqlrcon_endSession;

       something with the result 

     sqlrcur_free;
     sqlrcon_free;


The getOutputBindString() method returns a NULL value as an empty string. If you would it to come back as a NULL instead, you can call the getNullsAsNulls() method. To revert to the default behavior, you can call getNullsAsEmptyStrings().

If you are using Oracle 8i or higher, you can insert data into BLOB and CLOB columns using the inputBindBlob(), inputBindClob() methods.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_executeQuery,"";

     "";
     ;

      read an image from a  into imagedata  the length of the
              into imagelength 

     "";
     ;

      read a description from a  into description  the length of
             the  into desclength 

     sqlrcur_prepareQuery,"";
     sqlrcur_inputBindBlob,"",,;
     sqlrcur_inputBindClob,"",,;
     sqlrcur_executeQuery;

     sqlrcur_free;
     sqlrcon_free;


Likewise, with Oracle 8i, you can retreive BLOB or CLOB data using defineOutputBindBlob()/getOutputBindBlob() and defineOutputBindClob()/getOutputBindClob().

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_prepareQuery,"";
     sqlrcur_defineOutputBindBlob,"";
     sqlrcur_defineOutputBindClob,"";
     sqlrcur_executeQuery;

     sqlrcur_getOutputBindBlob,"";
     sqlrcur_getOutputBindLength,"";

     sqlrcur_getOutputBindClob,"";
     sqlrcur_getOutputBindLength,"";

     sqlrcon_endSession;

       something with image  desc 

     sqlrcur_free;
     sqlrcon_free;


Sometimes it's convenient to bind a bunch of variables that may or may not actually be in the query. For example, if you are building a web based application, it may be easy to just bind all the form variables/values from the previous page, even though some of them don't appear in the query. Databases usually generate errors in this case. Calling validateBinds() just prior to calling executeQuery() causes the API to check the query for each bind variable before actually binding it, preventing those kinds of errors, however there is a performance cost associated with calling validateBinds().

Re-Binding and Re-Execution

Another feature of the prepare/bind/execute paradigm is the ability to prepare, bind and execute a query once, then re-bind and re-execute the query over and over without re-preparing it. If your backend database natively supports this paradigm, you can reap a substantial performance improvement.

       "";

       sqlrcon_alloc"",,"","","",,;
       sqlrcur_alloccon;

       sqlrcur_prepareQuery,"";
       sqlrcur_inputBind,"",;
       sqlrcur_executeQuery;

        process the result set 

       sqlrcur_clearBinds;
       sqlrcur_inputBind,"",;
       sqlrcur_executeQuery;

        process the result set 

       sqlrcur_clearBinds;
       sqlrcur_inputBind,"",;
       sqlrcur_executeQuery;

        process the result set 

       sqlrcur_free;
       sqlrcon_free;

Accessing Fields in the Result Set

The sqlrcur_rowCount(), sqlrcur_colCount() and sqlrcur_getField() functions are useful for processing result sets.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_sendQuery,"";
     sqlrcon_endSession;

      ; sqlrcur_rowCount;  
              ; sqlrcur_colCount;  
                      sqlrcur_getField,,;
                      "";
             
              "";
     

     sqlrcur_free;
     sqlrcon_free;

The sqlrcur_getField() function returns a string. If you would like to get a field as a long or double, you can use sqlrcur_getFieldAsLong() and sqlrcur_getFieldAsDouble().

You can also use sqlrcur_getRow() or sqlrcur_getRowAssoc() to get the entire row.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_sendQuery,"";
     sqlrcon_endSession;

      ; sqlrcur_rowCount;  
             sqlrcur_getRow,;
              ; sqlrcur_colCount;  
                      rowarray;
                      "";
             
              "";
     

     sqlrcur_free;
     sqlrcon_free;

The sqlrcur_getField(), sqlrcur_getRow() and sqlrcur_getRowAssoc() functions return NULL fields as empty strings. If you would like them to come back as NULL's instead, you can call the sqlrcur_getNullsAsNulls() function. To revert to the default behavior, you can call sqlrcur_getNullsAsEmptyStrings().

If you want to access the result set, but don't care about the column information (column names, types or sizes) and don't mind getting fields by their numeric index instead of by name, you can call the sqlrcur_dontGetColumnInfo() function prior to executing your query. This can result in a performance improvement, especially when many queries with small result sets are executed in rapid succession. You can call sqlrcur_getColumnInfo() again later to turn off this feature.

Dealing With Large Result Sets

SQL Relay normally buffers the entire result set. This can speed things up at the cost of memory. With large enough result sets, it makes sense to buffer the result set in chunks instead of all at once.

Use sqlrcur_setResultSetBufferSize() to set the number of rows to buffer at a time. Calls to sqlrcur_getRow(), sqlrcur_getRowAssoc() and sqlrcur_getField() cause the chunk containing the requested field to be fetched. Rows in that chunk are accessible but rows before it are not.

For example, if you setResultSetBufferSize(5) and execute a query that returns 20 rows, rows 0-4 are available at once, then rows 5-9, then 10-14, then 15-19. When rows 5-9 are available, getField(0,0) will return NULL and getField(11,0) will cause rows 10-14 to be fetched and return the requested value.

When buffering the result set in chunks, don't end the session until after you're done with the result set.

If you call sqlrcur_setResultSetBufferSize() and forget what you set it to, you can always call sqlrcur_getResultSetBufferSize().

When buffering a result set in chunks, the sqlrcur_rowCount() function returns the number of rows returned so far. The sqlrcur_firstRowIndex() function returns the index of the first row of the currently buffered chunk.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_setResultSetBufferSize,;

     sqlrcur_sendQuery,"";

      done 
              ; sqlrcur_colCount;  
                      sqlrcur_getField,, 
                              ;
                              "";
                       
                             done;
                     
             
              "";
             ;
     

    sqlrcur_sendQuery,"";

     process this query's result set in chunks also 

    sqlrcur_setResultSetBufferSize,;

    sqlrcur_sendQuery,"";

     process this query's result set all at once 

    sqlrcon_endSession;

    sqlrcur_free;
    sqlrcon_free;

Cursors

Cursors make it possible to execute queries while processing the result set of another query. You can select rows from a table in one query, then iterate through it's result set, inserting rows into another table, using only 1 database connection for both operations.

For example:

        "";

        sqlrcon_alloc"",,"","","",,;
        sqlrcur_alloc;
        sqlrcur_alloc;

        sqlrcur_setResultSetBufferSize,;
        sqlrcur_sendQuery,"";

        ;
         sqlrcur_endOfResultSet 
                sqlrcur_prepareQuery,"";
                sqlrcur_inputBind,"",sqlrcur_getField,index,;
                sqlrcur_inputBind,"",sqlrcur_getField,index,;
                sqlrcur_inputBind,"",sqlrcur_getField,index,;
                sqlrcur_executeQuery;
        

        sqlrcur_free;
        sqlrcur_free;
        sqlrcon_free;

Prior to SQL Relay version 0.25, you would have had to buffer the first result set or use 2 database connections instead of just 1.

If you are using stored procedures with Oracle 8i or higher, a stored procedure can execute a query and return a cursor. A cursor bind variable can then retrieve that cursor. Your program can retrieve the result set from the cursor. All of this can be accomplished using defineOutputBindCursor(), getOutputBindCursor() and fetchFromOutputBindCursor().

        "";

        sqlrcon_alloc"",,"","","",,;
        sqlrcur_alloc;

        sqlrcur_prepareQuery,"";
        sqlrcur_defineOutputBindCursor,"";
        sqlrcur_executeQuery;

        sqlrcur         bindcursqlrcur_getOutputBindCursor,"";
        sqlrcur_fetchFromBindCursor;

        
         ; sqlrcur_rowCount;  
                 ; sqlrcur_colCount;  
                         sqlrcur_getField,,;
                         "";
                
                 "";
        

        sqlrcur_free;

        sqlrcur_free;
        sqlrcon_free;

The number of cursors simultaneously available per-connection is set at compile time and defaults to 5.

Getting Column Information

For each column, the API supports getting the name, type and length of each field. All databases support these attributes. The API also supports getting the precision, scale (see this page for a discussion of precision and scale), length of the longest field, and whether the column is nullable, the primary key, unique, part of a key, unsigned, zero-filled, binary, or an auto-incrementing field. However, not all databases support these attributes. If a database doesn't support an attribute, it is always returned as false.

     "";

     sqlrcon_alloc"",,"","","",,;
     sqlrcur_alloc;

     sqlrcur_sendQuery,"";
     sqlrcon_endSession;

      ; sqlrcur_colCount;  
              "";
              sqlrcur_getColumnName,;
              "";
              "";
              sqlrcur_getColumnType,;
              "";
              "";
              sqlrcur_getColumnLength,;
              "";
              "";
              sqlrcur_getColumnPrecision,;
              "";
              "";
              sqlrcur_getColumnScale,;
              "";
              "";
            
内容概要:本文详细介绍了“秒杀商城”微服务架构的设计与实战全过程,涵盖系统从需求分析、服务拆分、技术选型到核心功能开发、分布式事务处理、容器化部署及监控链路追踪的完整流程。重点解决了高并发场景下的超卖问题,采用Redis预减库存、消息队列削峰、数据库乐观锁等手段保障数据一致性,并通过Nacos实现服务注册发现与配置管理,利用Seata处理跨服务分布式事务,结合RabbitMQ实现异步下单,提升系统吞吐能力。同时,项目支持Docker Compose快速部署和Kubernetes生产级编排,集成Sleuth+Zipkin链路追踪与Prometheus+Grafana监控体系,构建可观测性强的微服务系统。; 适合人群:具备Java基础和Spring Boot开发经验,熟悉微服务基本概念的中高级研发人员,尤其是希望深入理解高并发系统设计、分布式事务、服务治理等核心技术的开发者;适合工作2-5年、有志于转型微服务或提升架构能力的工程师; 使用场景及目标:①学习如何基于Spring Cloud Alibaba构建完整的微服务项目;②掌握秒杀场景下高并发、超卖控制、异步化、削峰填谷等关键技术方案;③实践分布式事务(Seata)、服务熔断降级、链路追踪、统一配置中心等企业级中间件的应用;④完成从本地开发到容器化部署的全流程落地; 阅读建议:建议按照文档提供的七个阶段循序渐进地动手实践,重点关注秒杀流程设计、服务间通信机制、分布式事务实现和系统性能优化部分,结合代码调试与监控工具深入理解各组件协作原理,真正掌握高并发微服务系统的构建能力。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值