0

NOTORMを使用してクエリを生成していますが、アプリケーションでユーザーがフィールドや条件などを選択して、基本的にカスタムクエリを作成できるケースが1つあります。このようにして、ユーザーは「800を超えて費やした名=ジャックの人々」のようなレポートを生成できます。

このクエリを生成するためにNOTORMを使用していますが、NOTORMを使用していないアプリケーションの別の部分で使用できるようにクエリを保存したいと思います。生成されたクエリを取得する関数はありますか?

これは、クエリが生成および実行された後のNOTORMオブジェクトの外観です。

    object(NotORM_Result)#55 (33) {
  ["single":protected]=>
  bool(false)
  ["select":protected]=>
  array(0) {
  }
  ["conditions":protected]=>
  array(7) {
    [0]=>
    string(9) "name = ? "
    [1]=>
    string(12) "surname = ? "
    [2]=>
    string(15) "custom_field_19"
    [3]=>
    string(31) "custom_field_20 BETWEEN ? AND ?"
    [4]=>
    string(21) "custom_field_18 <= ? "
    [5]=>
    string(15) "custom_field_16"
    [6]=>
    string(10) "email = ? "
  }
  ["where":protected]=>
  array(7) {
    [0]=>
    string(9) "name = ? "
    [1]=>
    string(12) "surname = ? "
    [2]=>
    string(52) "custom_field_19 IN ('Yes', 'Sent lender info', 'No')"
    [3]=>
    string(31) "custom_field_20 BETWEEN ? AND ?"
    [4]=>
    string(21) "custom_field_18 <= ? "
    [5]=>
    string(28) "custom_field_16 IN ('Buyer')"
    [6]=>
    string(10) "email = ? "
  }
  ["parameters":protected]=>
  array(6) {
    [0]=>
    string(1) "a"
    [1]=>
    string(6) "Franco"
    [2]=>
    int(1218146400)
    [3]=>
    int(1249682400)
    [4]=>
    string(3) "800"
    [5]=>
    string(1) "?"
  }
  ["order":protected]=>
  array(0) {
  }
  ["limit":protected]=>
  NULL
  ["offset":protected]=>
  NULL
  ["group":protected]=>
  string(0) ""
  ["having":protected]=>
  string(0) ""
  ["lock":protected]=>
  NULL
  ["union":protected]=>
  array(0) {
  }
  ["unionOrder":protected]=>
  array(0) {
  }
  ["unionLimit":protected]=>
  NULL
  ["unionOffset":protected]=>
  NULL
  ["data":protected]=>
  NULL
  ["referencing":protected]=>
  array(0) {
  }
  ["aggregation":protected]=>
  array(0) {
  }
  ["accessed":protected]=>
  NULL
  ["access":protected]=>
  NULL
  ["keys":protected]=>
  array(0) {
  }
  ["connection":protected]=>
  NULL
  ["driver":protected]=>
  NULL
  ["structure":protected]=>
  NULL
  ["cache":protected]=>
  NULL
  ["notORM":protected]=>
  object(NotORM)#3 (12) {
    ["connection":protected]=>
    object(PDO)#2 (0) {
    }
    ["driver":protected]=>
    string(5) "mysql"
    ["structure":protected]=>
    object(NotORM_Structure_Convention)#4 (4) {
      ["primary":protected]=>
      string(2) "id"
      ["foreign":protected]=>
      string(5) "%s_id"
      ["table":protected]=>
      string(2) "%s"
      ["prefix":protected]=>
      string(0) ""
    }
    ["cache":protected]=>
    NULL
    ["notORM":protected]=>
    NULL
    ["table":protected]=>
    NULL
    ["primary":protected]=>
    NULL
    ["rows":protected]=>
    NULL
    ["referenced":protected]=>
    array(0) {
    }
    ["debug":protected]=>
    bool(false)
    ["freeze":protected]=>
    bool(false)
    ["rowClass":protected]=>
    string(10) "NotORM_Row"
  }
  ["table":protected]=>
  string(5) "users"
  ["primary":protected]=>
  string(2) "id"
  ["rows":protected]=>
  NULL
  ["referenced":protected]=>
  array(0) {
  }
  ["debug":protected]=>
  bool(false)
  ["freeze":protected]=>
  bool(false)
  ["rowClass":protected]=>
  string(10) "NotORM_Row"
}

「where」と「parameters」を繰り返すある種のスクリプトを実行できますが、特にこれらの配列の順序が正しくないため、あまりエレガントではないようです(各「?」を次の項目に置き換えるなどの操作を行う必要があります)。 「パラメータ」で)... NOTORM関数はありますか?またはあなたが提案するよりエレガントな方法はありますか?

これは、最後のオプションにエレガントなものがある場合の「where」と「parameters」の部分です。

    ["where":protected]=>
  array(7) {
    [0]=>
    string(9) "name = ? "
    [1]=>
    string(12) "surname = ? "
    [2]=>
    string(52) "custom_field_19 IN ('Yes', 'Sent lender info', 'No')"
    [3]=>
    string(31) "custom_field_20 BETWEEN ? AND ?"
    [4]=>
    string(21) "custom_field_18 <= ? "
    [5]=>
    string(28) "custom_field_16 IN ('Buyer')"
    [6]=>
    string(10) "email = ? "
  }
  ["parameters":protected]=>
  array(6) {
    [0]=>
    string(1) "a"
    [1]=>
    string(6) "Franco"
    [2]=>
    int(1218146400)
    [3]=>
    int(1249682400)
    [4]=>
    string(3) "800"
    [5]=>
    string(1) "?"
  }
4

1 に答える 1

0

NotORM_Result オブジェクトを文字列に変換するだけです

$sql = (string)$result;
//or
$sql = $result->__toString();
于 2012-09-28T21:00:40.880 に答える