JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "Statement.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Spanner/Statement.php
File size: 3.11 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\Spanner;

class Statement extends \Google\Model
{
  protected $paramTypesType = Type::class;
  protected $paramTypesDataType = 'map';
  /**
   * Parameter names and values that bind to placeholders in the DML string. A
   * parameter placeholder consists of the `@` character followed by the
   * parameter name (for example, `@firstName`). Parameter names can contain
   * letters, numbers, and underscores. Parameters can appear anywhere that a
   * literal value is expected. The same parameter name can be used more than
   * once, for example: `"WHERE id > @msg_id AND id < @msg_id + 100"` It's an
   * error to execute a SQL statement with unbound parameters.
   *
   * @var array[]
   */
  public $params;
  /**
   * Required. The DML string.
   *
   * @var string
   */
  public $sql;

  /**
   * It isn't always possible for Cloud Spanner to infer the right SQL type from
   * a JSON value. For example, values of type `BYTES` and values of type
   * `STRING` both appear in params as JSON strings. In these cases,
   * `param_types` can be used to specify the exact SQL type for some or all of
   * the SQL statement parameters. See the definition of Type for more
   * information about SQL types.
   *
   * @param Type[] $paramTypes
   */
  public function setParamTypes($paramTypes)
  {
    $this->paramTypes = $paramTypes;
  }
  /**
   * @return Type[]
   */
  public function getParamTypes()
  {
    return $this->paramTypes;
  }
  /**
   * Parameter names and values that bind to placeholders in the DML string. A
   * parameter placeholder consists of the `@` character followed by the
   * parameter name (for example, `@firstName`). Parameter names can contain
   * letters, numbers, and underscores. Parameters can appear anywhere that a
   * literal value is expected. The same parameter name can be used more than
   * once, for example: `"WHERE id > @msg_id AND id < @msg_id + 100"` It's an
   * error to execute a SQL statement with unbound parameters.
   *
   * @param array[] $params
   */
  public function setParams($params)
  {
    $this->params = $params;
  }
  /**
   * @return array[]
   */
  public function getParams()
  {
    return $this->params;
  }
  /**
   * Required. The DML string.
   *
   * @param string $sql
   */
  public function setSql($sql)
  {
    $this->sql = $sql;
  }
  /**
   * @return string
   */
  public function getSql()
  {
    return $this->sql;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Statement::class, 'Google_Service_Spanner_Statement');