• 04-06-2022, 08:37:36
    #1
    Üyeliği durduruldu
    Merhaba arkadaşlar.
    122 bin ürün var sistemde datatable üzerinde gösterttim normal klasik datatable yaparsak vay halimize yüklenmez o sayfa fakat ben server side search olarak yaptım şuan sorun yok saniyeler içinde geliyor fakat şöyle birşey var acaba ben mi bilmiyorum?

    Bende 2 tane tablo var bir ürünler diğeri iskontolar. iskontolar tablosundaki veriler sürekli değişiyor ürünlerdeki bilgiler değişmiyor fakat iskontoların hesaplanmış rakamları tutuluyor. Hesaplattıktan sonra ürünlerdeki alanlara yazdırmak zorunda kalıyorum hesaplatıp bunu tabikide yazdırmak zaman alıyor server side search'de 2 tabloyu bağlamak gibi birşey mümkün mü yoksa 1 tablodan mı veri çekiyor? Böylelikle hiç hesaplatıp diğer tabloya yazdırmadan iki tabloyu birleştirip direkt ekrana yazdırırım hesaplatıp.
  • 04-06-2022, 08:42:41
    #2
    Takip
  • 04-06-2022, 09:08:33
    #3
    Olayı tam anlamadım ama serverside da left join ile birleştirip 2 tabloyu göstermek mümkün.
  • 04-06-2022, 09:11:09
    #4
    Üyeliği durduruldu
    omergunay adlı üyeden alıntı: mesajı görüntüle
    Olayı tam anlamadım ama serverside da left join ile birleştirip 2 tabloyu göstermek mümkün.
    İşte onu tam nerede ve nasıl yapacağımızı tam anlayamadım ben sadece orada tablo ve veritabanı adlarını giriyorum ayrıca primary key alanını belirliyorum bu kadar geri kalanında tablodaki hangi sütunda hangisi görüneceği belli oluyor tüm sorguyu vs kendisi yazıyor ben anlamadım
  • 04-06-2022, 09:20:46
    #5
    arvensan adlı üyeden alıntı: mesajı görüntüle
    İşte onu tam nerede ve nasıl yapacağımızı tam anlayamadım ben sadece orada tablo ve veritabanı adlarını giriyorum ayrıca primary key alanını belirliyorum bu kadar geri kalanında tablodaki hangi sütunda hangisi görüneceği belli oluyor tüm sorguyu vs kendisi yazıyor ben anlamadım
    Mantığı şu şekilde hocam. Ama bu mantığın çalışması için alt taraftaki ssp.class.php yi kaydet.
    // SQL server connection information
    $SqlDetail = array(
    'user' => $dbuser,
    'pass' => $dbpass,
    'db' => $dbname,
    'host' => $server
    );
    
    $table = "table";
    
    $joinQuery = "FROM {$table} AS a LEFT JOIN table2 AS b ON (a.deger=b.deger)";
    
    $where = "Status='Active'";
    
    
    $primaryKey = 'tableID';
    
    echo json_encode(
    SSP::simple( $_POST, $SqlDetail, $table, $primaryKey, $columns, $joinQuery, $where)
        );

    ssp.class.php
    <?php
    /*
     * Helper functions for building a DataTables server-side processing SQL query
     *
     * The static functions in this class are just helper functions to help build
     * the SQL used in the DataTables demo server-side processing scripts. These
     * functions obviously do not represent all that can be done with server-side
     * processing, they are intentionally simple to show how it works. More complex
     * server-side processing operations will likely require a custom script.
     *
     * See http://datatables.net/usage/server-side for full details on the server-
     * side processing requirements of DataTables.
     *
     * @license MIT - http://datatables.net/license_mit
     */
    
    // REMOVE THIS BLOCK - used for DataTables test environment only!
    // $file = $_SERVER['DOCUMENT_ROOT'].'/datatables/mysql.php';
    // if ( is_file( $file ) ) {
    //     include( $file );
    // }
    
    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
         * @param bool  $isJoin  Determine the the JOIN/complex query or simple one
         *
         * @return array Formatted data in a row based format
         */
        static function data_output ( $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'] ) ) {
                        if(empty($column['db'])){
                            $row[ $column['dt'] ] = $column['formatter']( $data[$i] );
                        }
                        else{
                            $row[ $column['dt'] ] = $column['formatter']( $data[$i][ $column['db'] ], $data[$i] );
                        }
                    }
                    else {
                        if(!empty($column['db'])){
                            $row[ $column['dt'] ] = $data[$i][ $columns[$j]['db'] ];
                        }
                        else{
                            $row[ $column['dt'] ] = "";
                        }
                    }
                }
                $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
         *  @param bool  $isJoin  Determine the the JOIN/complex query or simple one
         *
         *  @return string SQL order by clause
         */
        static function order ( $request, $columns, $isJoin = false )
        {
            $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[] = ($isJoin) ? $column['db'].' '.$dir : '`'.$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
         *  @param  bool  $isJoin  Determine the the JOIN/complex query or simple one
         *
         *  @return string SQL where clause
         */
        static function filter ( $request, $columns, &$bindings, $isJoin = false )
        {
            $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[] = ($isJoin) ? $column['db']." LIKE ".$binding : "`".$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[] = ($isJoin) ? $column['db']." LIKE ".$binding : "`".$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 ', $columnSearch) :
                    $where .' AND '. implode(' AND ', $columnSearch);
            }
            if ( $where !== '' ) {
                $where = 'WHERE '.$where;
            }
            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
         *  @param  array $joinQuery Join query String
         *  @param  string $extraWhere Where query String
         *  @param  string $groupBy groupBy by any field will apply
         *  @param  string $having HAVING by any condition will apply
         *
         *  @return array  Server-side processing response array
         *
         */
        static function simple ( $request, $sql_details, $table, $primaryKey, $columns, $joinQuery = NULL, $extraWhere = '', $groupBy = '', $having = '')
        {
            $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, $joinQuery );
            $where = SSP::filter( $request, $columns, $bindings, $joinQuery );
            // IF Extra where set then set and prepare query
            if($extraWhere)
                $extraWhere = ($where) ? ' AND '.$extraWhere : ' WHERE '.$extraWhere;
            $groupBy = ($groupBy) ? ' GROUP BY '.$groupBy .' ' : '';
            $having = ($having) ? ' HAVING '.$having .' ' : '';
            // Main query to actually get the data
            if($joinQuery){
                $col = SSP::pluck($columns, 'db', $joinQuery);
                $query =  "SELECT SQL_CALC_FOUND_ROWS ".implode(", ", $col)."
                 $joinQuery
                 $where
                 $extraWhere
                 $groupBy
           $having
                 $order
                 $limit";
            }else{
                $query =  "SELECT SQL_CALC_FOUND_ROWS `".implode("`, `", SSP::pluck($columns, 'db'))."`
                 FROM `$table`
                 $where
                 $extraWhere
                 $groupBy
           $having
                 $order
                 $limit";
            }
            $data = SSP::sql_exec( $db, $bindings,$query);
            // Data set length after filtering
            $resFilterLength = SSP::sql_exec( $db,
                "SELECT FOUND_ROWS()"
            );
            $recordsFiltered = $resFilterLength[0][0];
            // Total data set length
            $resTotalLength = SSP::sql_exec( $db,
                "SELECT COUNT(`{$primaryKey}`)
                 FROM   `$table`"
            );
            $recordsTotal = $resTotalLength[0][0];
    
            /*
             * Output
             */
            return array(
                "draw"            => intval( $request['draw'] ),
                "recordsTotal"    => intval( $recordsTotal ),
                "recordsFiltered" => intval( $recordsFiltered ),
                "data"            => SSP::data_output( $columns, $data, $joinQuery )
            );
        }
    
        /**
         * Connect to the database
         *
         * @param  array $sql_details SQL server connection details array, with the
         *   properties:
         *     * host - host name
         *     * db   - database name
         *     * user - user name
         *     * pass - user password
         * @return resource Database connection handle
         */
        static function sql_connect ( $sql_details )
        {
            try {
                $db = @new PDO(
                    "mysql:host={$sql_details['host']};dbname={$sql_details['db']}",
                    $sql_details['user'],
                    $sql_details['pass'],
                    array( PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION )
                );
                $db->query("SET NAMES 'utf8'");
            }
            catch (PDOException $e) {
                SSP::fatal(
                    "An error occurred while connecting to the database. ".
                    "The error reported by the server was: ".$e->getMessage()
                );
            }
            return $db;
        }
    
        /**
         * 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
         *  @param  bool  $isJoin  Determine the the JOIN/complex query or simple one
         *  @return array        Array of property values
         */
        static function pluck ( $a, $prop, $isJoin = false )
        {
            $out = array();
            for ( $i=0, $len=count($a) ; $i<$len ; $i++ ) {
                $out[] = ($isJoin && isset($a[$i]['as'])) ? $a[$i][$prop]. ' AS '.$a[$i]['as'] : $a[$i][$prop];
            }
            return $out;
        }
    }
  • 31-03-2023, 14:14:09
    #6
    Selamlar,

    Benzer bir sıkıntı yaşamıştım direk kod bloğunu paylaşıyorum.

    $table = '(SELECT p.productID, p.productName, p.stockCode, p.price1, p.stockCount, p.productStatus, p.categoryID, m.menu_key, GROUP_CONCAT(i.imageURL) as `Images` FROM tbl_products p LEFT JOIN tbl_primages i ON p.stockCode = i.stockCode LEFT JOIN tbl_menu m ON m.id = p.categoryID GROUP BY i.stockCode) as temp';
    $primaryKey = 'productID';
    $columns = array(
    array( 'db' => 'productID', 'dt' => 0 ),
    array( 'db' => 'productName', 'dt' => 2, 'formatter' => function( $d, $row ) {
    return '<b>' . $d . '</b>';
    }),
    array( 'db' => 'stockCode', 'dt' => 3 ),
    array( 'db' => 'categoryID', 'dt' => 4, 'formatter' => function( $d, $row ) {
    $caTree = findCategoryTree($d);
    if($caTree != null) {
    if($caTree["pcategoryId"] == $d)
    {
    $caTree = flang($caTree["categoryKey"]);
    }
    else {
    $caTree = $caTree["fullPath"];
    }
    }else
    {
    $caTree = flang($caTree["categoryKey"]);
    }
    
    
    return $caTree != null ? $caTree : "Kategorisiz";
    } ),
    array( 'db' => 'price1', 'dt' => 5),
    array( 'db' => 'stockCount', 'dt' => 6 ),
    array( 'db' => 'productStatus', 'dt' => 7, 'formatter' => function( $d, $row ) {
    return $d == '1' ? '<span class="badge badge-success">' . language('active') . '</span>' : '<span class="badge badge-warning">' . language('passive') . '</span>';} ),
    array( 'db' => 'productID', 'dt' => 8, 'formatter' => function( $d, $row ) {
    return '<a href="'. admin_site_url('product-details?productId='). $d .'"
    class="btn btn-secondary btn-sm waves-effect waves-light">
    <i class="fas fa-edit"></i>
    </a>
    <button type="button"
    class="btn btn-danger waves-effect waves-light btn-sm"
    onclick="TriggerDelModal('. $d .')">
    <i class="fas fa-trash"></i>
    </button>';
    } ),
    array( 'db' => 'Images', 'dt' => 1, 'formatter' => function( $d, $row ) {
    $ret = '';
    if(strlen($d) > 0)
    {
    $imgArr = explode(',',$d);
    foreach($imgArr as $img)
    {
    $ret .= '<img style="width: 50px; height: 50px" src="'. upload_url('products/'). $img .'">';
    }
    }
    return $ret;
    })
    );
    //
    global $config;
    $sql_details = array(
    'user' => $config['db']['user'],
    'pass' => $config['db']['pass'],
    'db' => $config['db']['name'],
    'host' => $config['db']['host']
    );
    
    
    $sspClass = __DIR__ . '/../classes/ssp.class.php';
    require $sspClass;
    
    $retData = SSP::simple($_GET,$sql_details, $table, $primaryKey, $columns);
    
    
            echo json_encode($retData);
    Bunun dışında datatables ile ilgili UTF-8 problemi yaşamıştım onunda önlemini baştan almanı öneririm.
    SQL_Connect'e UTF8 charseti eklemezsen türkçe karakterle ilgili hatalar veriyor SSP dolayısıyla Datatables.

    static function sql_connect ( $sql_details )
    {
    try {
    $db = @new PDO(
    "mysql:host={$sql_details['host']};charset=UTF8;dbname={$sql_details['db']}",
                $sql_details['user'],
                $sql_details['pass'],
                array( PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION )
    );
        }
  • 02-04-2023, 20:42:12
    #7
    kodla bağlamak yerine veritabanında bir view oluşturun, sorguyu oradan direk datatable a çekersiniz
  • 02-04-2023, 21:09:03
    #8
    by_ala adlı üyeden alıntı: mesajı görüntüle
    kodla bağlamak yerine veritabanında bir view oluşturun, sorguyu oradan direk datatable a çekersiniz
    Buna örnek verebilir misiniz?
  • 03-04-2023, 00:58:00
    #9
    ismail03 adlı üyeden alıntı: mesajı görüntüle
    Buna örnek verebilir misiniz?
    şöyle ki mysql üzerinde view dediğimiz bir yapı mevcut joinli tablolar sanki tek tablo gibi davranabiliyor. böylelikle çağırırken vermiş olduğumuz isimle direk çağırıyoruz teknik anlatım kısmım çok iyi olmayabilir ancak mysql view diye araştırırsanız daha detaylı öğrenebilirsiniz. kod olarakta mysql de sql e kısmına create view

    CREATE VIEW view_name AS
    SELECT * FROM table_name left join table_name2 ;

    şeklinde bir kullanımı var kodda da bunu normal tablo çağırır gibi select * from view_name olarak çağırabilirsiniz.