DataTables 1.10 serverside mit Tabellen-joins Rückgabe 'null' - Wert Antworten

Ich versuche, ändern Sie die Standard-serverside scripting für DataTables 1.10 (die neueste die in der beta jetzt) zu ermöglichen, Tabellen-joins und Brauch 'WO' Bedingungen. "WO" Bedingungen funktionieren, wie ich dies früher, aber ich habe einige Probleme mit Tabellen-joins. Ich machte einige Fortschritte zu früher (ich bin nicht mehr erhalten, keine Fehler im firebug), aber alle Spalten einer jeden Zeile sind der Rückgabe eines null-Wertes als Antwort. In anderen Worten, meine Tabelle zeigt, auf der Seite mit allen leeren Spalten für jede Zeile.

Habe ich versucht das datatables-forum, aber nicht viel Glück. Der Einfachheit halber habe ich nicht alles, sondern das serverseitige php-Skript verarbeitet und das ssp.class.php Skript als gut.

processing.php :

//DB table to use
$table = "`users`";

//Join condition
$myJoin = "LEFT JOIN `security` ON `users`.`user_id` = `security`.`user_id`";


//Table's primary key
$primaryKey = "`users`.`user_id`";

//Array of database columns which should be read and sent back to DataTables.
//The `db` parameter represents the column name in the database, while the `dt`
//parameter represents the DataTables column identifier. In this case simple
//indexes
$columns = array(
    array( 'db' => '`security`.`settings_id`', 'dt' => 'settings_id' ),
    array( 'db' => '`users`.`user_id`', 'dt' => 'user_id' ),
    array( 'db' => '`users`.`username`', 'dt' => 'username' ),
    array( 'db' => '`users`.`computer_name`', 'dt' => 'computer_name' ),
    array( 'db' => '`security`.`disable_desktop`', 'dt' => 'disable_desktop' ),
    array( 'db' => '`security`.`disable_start`', 'dt' => 'disable_start' ),
    array( 'db' => '`security`.`disable_shutdown`', 'dt' => 'disable_shutdown' ),
    array( 'db' => '`security`.`disable_run`', 'dt' => 'disable_run' ),
    array( 'db' => '`security`.`disable_mouse`', 'dt' => 'disable_mouse' ),
    array( 'db' => '`security`.`disable_bootkeys`', 'dt' => 'disable_bootkeys' ),
    array( 'db' => '`security`.`disable_cp`', 'dt' => 'disable_cp' ),
    array( 'db' => '`security`.`disable_network`', 'dt' => 'disable_network' ),
    array( 'db' => '`security`.`disable_taskbar`', 'dt' => 'disable_taskbar' ),
    array( 'db' => '`security`.`disable_clock`', 'dt' => 'disable_clock' ),
    array( 'db' => '`security`.`disable_logoff`', 'dt' => 'disable_logoff' ),
    array( 'db' => '`security`.`disable_startchange`', 'dt' => 'disable_startchange' ),
    array( 'db' => '`security`.`disable_taskman`', 'dt' => 'disable_taskman' ),
    array( 'db' => '`security`.`disable_clipboard`', 'dt' => 'disable_clipboard' ),
    array( 'db' => '`security`.`disable_drives`', 'dt' => 'disable_drives' )
);

echo json_encode(
    SSP::simple( $_GET, $db, $table, $primaryKey, $columns, $myJoin, "")
    //SSP::simple( $_GET, $db, $table, $primaryKey, $columns, $myJoin, $myWhere)
);

ssp.class.php :

class SSP {
    /**
     * Create the data output array for the DataTables rows
     *
     *  @param  array $columns Column information array
     *  @param  array $data    Data from the SQL get
     *  @return array          Formatted data in a row based format
     */
    static function data_output ( $primaryKey, $columns, $data )
    {
        $out = array();

        for ( $i=0, $ien=count($data) ; $i<$ien ; $i++ ) {
            $row = array();

            for ( $j=0, $jen=count($columns) ; $j<$jen ; $j++ ) {
                $column = $columns[$j];    
                //Is there a formatter?
                if ( isset( $column['formatter'] ) ) {
                    $row[ $column['dt'] ] = $column['formatter']( $data[$i][ $column['db'] ], $data[$i] );
                }
                else {
                    $row[ $column['dt'] ] = $data[$i][ $columns[$j]['db'] ];
                }

            }


            $out[] = $row;
        }

        return $out;
    }


    /**
     * Paging
     *
     * Construct the LIMIT clause for server-side processing SQL query
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @return string SQL limit clause
     */
    static function limit ( $request, $columns )
    {
        $limit = '';

        if ( isset($request['start']) && $request['length'] != -1 ) {
            $limit = "LIMIT ".intval($request['start']).", ".intval($request['length']);
        }

        return $limit;
    }


    /**
     * Ordering
     *
     * Construct the ORDER BY clause for server-side processing SQL query
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @return string SQL order by clause
     */
    static function order ( $request, $columns )
    {
        $order = '';

        if ( isset($request['order']) && count($request['order']) ) {
            $orderBy = array();
            $dtColumns = SSP::pluck( $columns, 'dt' );

            for ( $i=0, $ien=count($request['order']) ; $i<$ien ; $i++ ) {
                //Convert the column index into the column data property
                $columnIdx = intval($request['order'][$i]['column']);
                $requestColumn = $request['columns'][$columnIdx];

                $columnIdx = array_search( $requestColumn['data'], $dtColumns );
                $column = $columns[ $columnIdx ];

                if ( $requestColumn['orderable'] == true ) {
                    $dir = $request['order'][$i]['dir'] === 'asc' ?
                        'ASC' :
                        'DESC';

                    $orderBy[] = ''.$column['db'].' '.$dir;
                }
            }

            $order = 'ORDER BY '.implode(', ', $orderBy);
        }

        return $order;
    }


    /**
     * Searching /Filtering
     *
     * Construct the WHERE clause for server-side processing SQL query.
     *
     * NOTE this does not match the built-in DataTables filtering which does it
     * word by word on any field. It's possible to do here performance on large
     * databases would be very poor
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @param  array $bindings Array of values for PDO bindings, used in the
     *    sql_exec() function
     *  @return string SQL where clause
     EDIT : added $mywhere functionality for passing initial filtering conditions
     */
    static function filter ( $request, $columns, &$bindings, $myWhere )
    {
        $globalSearch = array();
        $columnSearch = array();
        $dtColumns = SSP::pluck( $columns, 'dt' );

        if ( isset($request['search']) && $request['search']['value'] != '' ) {
            $str = $request['search']['value'];

            for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
                $requestColumn = $request['columns'][$i];
                $columnIdx = array_search( $requestColumn['data'], $dtColumns );
                $column = $columns[ $columnIdx ];

                if ( $requestColumn['searchable'] == 'true' ) {
                    $binding = SSP::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
                    $globalSearch[] = "".$column['db']." LIKE ".$binding;
                }
            }
        }

        //Individual column filtering
        for ( $i=0, $ien=count($request['columns']) ; $i<$ien ; $i++ ) {
            $requestColumn = $request['columns'][$i];
            $columnIdx = array_search( $requestColumn['data'], $dtColumns );
            $column = $columns[ $columnIdx ];

            $str = $requestColumn['search']['value'];

            if ( $requestColumn['searchable'] == 'true' &&
             $str != '' ) {
                $binding = SSP::bind( $bindings, '%'.$str.'%', PDO::PARAM_STR );
                $columnSearch[] = "".$column['db']." LIKE ".$binding;
            }
        }

        //Combine the filters into a single string
        $where = '';

        if ( count( $globalSearch ) ) {
            $where = '('.implode(' OR ', $globalSearch).')';
        }

        if ( count( $columnSearch ) ) {
            $where = $where === '' ?
                implode(' AND ', $globalSearch) :
                $where .' AND '. implode(' AND ', $globalSearch);
        }

        if ( $where !== '' ) {
            $where = 'WHERE '.$where;

            //add my clause
            if ($myWhere !== '') {
                $where .= ' AND '.$myWhere;
            }
        }

        if ( $where == '' && $myWhere !== '') {
            //add my clause
            $where = 'WHERE '.$myWhere;
        }       

        return $where;
    }


    /**
     * Perform the SQL queries needed for an server-side processing requested,
     * utilising the helper functions of this class, limit(), order() and
     * filter() among others. The returned array is ready to be encoded as JSON
     * in response to an SSP request, or can be modified if needed before
     * sending back to the client.
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $sql_details SQL connection details - see sql_connect()
     *  @param  string $table SQL table to query
     *  @param  string $primaryKey Primary key of the table
     *  @param  array $columns Column information array
     *  @return array          Server-side processing response array
     */
    static function simple ( $request, $db, $table, $primaryKey, $columns, $myJoin, $myWhere )
    {
        $bindings = array();
        //$db = SSP::sql_connect( $sql_details );

        //Build the SQL query string from the request
        $limit = SSP::limit( $request, $columns );
        $order = SSP::order( $request, $columns );
        $where = SSP::filter( $request, $columns, $bindings, $myWhere );    

        //Main query to actually get the data
        $data = SSP::sql_exec( $db, $bindings,
            "SELECT SQL_CALC_FOUND_ROWS ".implode(", ", SSP::pluck($columns, 'db'))."
             FROM $table
             $myJoin
             $where
             $order
             $limit"
        );

        //Data set length after filtering
        $resFilterLength = SSP::sql_exec( $db,
            "SELECT FOUND_ROWS()"
        );
        $recordsFiltered = $resFilterLength[0][0];  

        //add my initial where clause for correct results
        $dataWhere = ($myWhere !== '' ? 'WHERE '.$myWhere : '');

        //Total data set length        
        $resTotalLength = SSP::sql_exec( $db,
            "SELECT COUNT({$primaryKey})
             FROM $table
             $myJoin
             $dataWhere"
        );
        $recordsTotal = $resTotalLength[0][0];


        /*
         * Output
         */          
        return array(
            "draw"            => intval( $request['draw'] ),
            "recordsTotal"    => intval( $recordsTotal ),
            "recordsFiltered" => intval( $recordsFiltered ),
            "data"            => SSP::data_output( $primaryKey, $columns, $data )
        );
    }

    /**
     * Execute an SQL query on the database
     *
     * @param  resource $db  Database handler
     * @param  array    $bindings Array of PDO binding values from bind() to be
     *   used for safely escaping strings. Note that this can be given as the
     *   SQL query string if no bindings are required.
     * @param  string   $sql SQL query to execute.
     * @return array         Result from the query (all rows)
     */
    static function sql_exec ( $db, $bindings, $sql=null )
    {
        //Argument shifting
        if ( $sql === null ) {
            $sql = $bindings;
        }

        $stmt = $db->prepare( $sql );
        //echo $sql;

        //Bind parameters
        if ( is_array( $bindings ) ) {
            for ( $i=0, $ien=count($bindings) ; $i<$ien ; $i++ ) {
                $binding = $bindings[$i];
                $stmt->bindValue( $binding['key'], $binding['val'], $binding['type'] );
            }
        }

        //Execute
        try {
            $stmt->execute();
        }
        catch (PDOException $e) {
            SSP::fatal( "An SQL error occurred: ".$e->getMessage() );
        }

        //Return all
        return $stmt->fetchAll();
    }


    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Internal methods
     */

    /**
     * Throw a fatal error.
     *
     * This writes out an error message in a JSON string which DataTables will
     * see and show to the user in the browser.
     *
     * @param  string $msg Message to send to the client
     */
    static function fatal ( $msg )
    {
        echo json_encode( array( 
            "error" => $msg
        ) );

        exit(0);
    }

    /**
     * Create a PDO binding key which can be used for escaping variables safely
     * when executing a query with sql_exec()
     *
     * @param  array &$a    Array of bindings
     * @param  *      $val  Value to bind
     * @param  int    $type PDO field type
     * @return string       Bound key to be used in the SQL where this parameter
     *   would be used.
     */
    static function bind ( &$a, $val, $type )
    {
        $key = ':binding_'.count( $a );

        $a[] = array(
            'key' => $key,
            'val' => $val,
            'type' => $type
        );

        return $key;
    }


    /**
     * Pull a particular property from each assoc. array in a numeric array, 
     * returning and array of the property values from each item.
     *
     *  @param  array  $a    Array to get data from
     *  @param  string $prop Property to read
     *  @return array        Array of property values
     */
    static function pluck ( $a, $prop )
    {
        $out = array();

        for ( $i=0, $len=count($a) ; $i<$len ; $i++ ) {
            $out[] = $a[$i][$prop];
        }

        return $out;
    }
}

EDIT :

Hier ist das Ergebnis der SSP::data_output( $primaryKey, $columns, $data ). Ich hatte diese ausdrucken, um eine Datei, da konnte ich nicht drucken/anzeigen auf dem Bildschirm. Ziemlich klar aus den Ergebnissen, dass etwas mit den Daten, die Teil des Codes, da gibt es nichts, aber es ist wieder die korrekte Anzahl der Ergebnisse (in diesem Fall 5). Beachten Sie, dass die Namensgebung ist anders als diese sind die Namen wieder zurück zu DataTables und nicht die eigentliche db-Spalte mit Namen, aber das hat wahrscheinlich etwas damit zu tun.

Array
(
    [0] => Array
        (
            [settings_id] => 
            [user_id] => 
            [username] => 
            [computer_name] => 
            [disable_desktop] => 
            [disable_start] => 
            [disable_shutdown] => 
            [disable_run] => 
            [disable_mouse] => 
            [disable_bootkeys] => 
            [disable_cp] => 
            [disable_network] => 
            [disable_taskbar] => 
            [disable_clock] => 
            [disable_logoff] => 
            [disable_startchange] => 
            [disable_taskman] => 
            [disable_clipboard] => 
            [disable_drives] => 
            [DT_RowId] => 
        )

    [1] => Array
        (
            [settings_id] => 
            [user_id] => 
            [username] => 
            [computer_name] => 
            [disable_desktop] => 
            [disable_start] => 
            [disable_shutdown] => 
            [disable_run] => 
            [disable_mouse] => 
            [disable_bootkeys] => 
            [disable_cp] => 
            [disable_network] => 
            [disable_taskbar] => 
            [disable_clock] => 
            [disable_logoff] => 
            [disable_startchange] => 
            [disable_taskman] => 
            [disable_clipboard] => 
            [disable_drives] => 
            [DT_RowId] => 
        )

    [2] => Array
        (
            [settings_id] => 
            [user_id] => 
            [username] => 
            [computer_name] => 
            [disable_desktop] => 
            [disable_start] => 
            [disable_shutdown] => 
            [disable_run] => 
            [disable_mouse] => 
            [disable_bootkeys] => 
            [disable_cp] => 
            [disable_network] => 
            [disable_taskbar] => 
            [disable_clock] => 
            [disable_logoff] => 
            [disable_startchange] => 
            [disable_taskman] => 
            [disable_clipboard] => 
            [disable_drives] => 
            [DT_RowId] => 
        )

    [3] => Array
        (
            [settings_id] => 
            [user_id] => 
            [username] => 
            [computer_name] => 
            [disable_desktop] => 
            [disable_start] => 
            [disable_shutdown] => 
            [disable_run] => 
            [disable_mouse] => 
            [disable_bootkeys] => 
            [disable_cp] => 
            [disable_network] => 
            [disable_taskbar] => 
            [disable_clock] => 
            [disable_logoff] => 
            [disable_startchange] => 
            [disable_taskman] => 
            [disable_clipboard] => 
            [disable_drives] => 
            [DT_RowId] => 
        )

    [4] => Array
        (
            [settings_id] => 
            [user_id] => 
            [username] => 
            [computer_name] => 
            [disable_desktop] => 
            [disable_start] => 
            [disable_shutdown] => 
            [disable_run] => 
            [disable_mouse] => 
            [disable_bootkeys] => 
            [disable_cp] => 
            [disable_network] => 
            [disable_taskbar] => 
            [disable_clock] => 
            [disable_logoff] => 
            [disable_startchange] => 
            [disable_taskman] => 
            [disable_clipboard] => 
            [disable_drives] => 
            [DT_RowId] => 
        )

)

Weitere info - Anzeige von "$data " an dieser Stelle wird der unten gezeigte code gibt alle die richtigen Werte.

$data = SSP::sql_exec( $db, $bindings,
    "SELECT SQL_CALC_FOUND_ROWS ".implode(", ", SSP::pluck($columns, 'db'))."
     FROM $table
     $myJoin
     $where
     $order
     $limit"
);

Hier ist ein Teil (eine Zeile) des zurückgegebenen Arrays mit den richtigen Werten aus der obigen :

[3] => Array
    (
        [settings_id] => 1
        [0] => 1
        [user_id] => 11
        [1] => 11
        [username] => steve
        [2] => steve
        [computer_name] => TESTING
        [3] => TESTING
        [disable_desktop] => 1
        [4] => 1
        [disable_start] => 0
        [5] => 0
        [disable_shutdown] => 0
        [6] => 0
        [disable_run] => 0
        [7] => 0
        [disable_mouse] => 0
        [8] => 0
        [disable_bootkeys] => 0
        [9] => 0
        [disable_cp] => 0
        [10] => 0
        [disable_network] => 0
        [11] => 0
        [disable_taskbar] => 0
        [12] => 0
        [disable_clock] => 0
        [13] => 0
        [disable_logoff] => 0
        [14] => 0
        [disable_startchange] => 0
        [15] => 0
        [disable_taskman] => 0
        [16] => 0
        [disable_clipboard] => 0
        [17] => 0
        [disable_drives] => 0
        [18] => 0
    )

Nicht ganz sicher, ob das die richtige Ausgabe ist oder nicht, ich glaube jedoch, es ist, als Sie können finden die Daten in Datentabellen, die durch name oder index, der würde erklären diesen Ausgang.

EDIT:

Ich verengt das problem ein wenig weiter. statische Funktion data_output ( $primaryKey, $Spalten, $Daten ) ist Teil des Problems, wie erwartet. $primaryKey und $Spalten haben die richtigen Werte, jedoch, $data nicht.

In der Funktion, wenn Sie kommen zu dem Teil, wo es eigentlich setzt die Werte, es gibt keinen Wert im array gesetzt werden.

$row[ $column['dt'] ] = $data[$i][ $columns[$j]['db'] ];

Hier $row[ $column['dt'] ] ist richtig, aber $data[$i][ $columns[$j]['db'] ]; hat kein db-Wert. Wie Sie sehen können, im Beispiel die Ausgabe von $data über die db-Werte sind nicht vorhanden, aber statt des dt-Werte zusammen mit dem index als den gleichen Wert. Durch ändern dieses zu dt meine Tabelle zeigt die Daten, aber das bricht ein paar andere Dinge. Ich bin nicht sicher, warum $data ist auch nicht die db-Werte, wie es sollte.

  • Versuchen Sie, einen dump der gesamten query und versuchen Sie ausführt direkt auf die mysql-Kommandozeile sehen, ob es irgendwelche Fehler.
  • Wenn ich bin, verstehen Sie richtig, das wird nicht wirklich helfen. Ich könnte auch einfach die Abfrage der db mit dem, was ich will... es ist eine Frage der änderung dieses Skripts akzeptieren Sie die Tabellenverknüpfungen, die ich bin nach. zeichnen, recordsTotal, und recordsFiltered wieder richtig. "data" => SSP::data_output( $primaryKey, $columns, $data ) scheint das Problem wie alle Spalten null zurück.
  • Können Sie versuchen, sichern Sie die $data-variable, rechts nach SSP::sql_exec(,
  • Siehe oben... bearbeitet
InformationsquelleAutor user756659 | 2014-02-11
Schreibe einen Kommentar