2014-05-07 8 views
7

के साथ सर्वर साइड प्रोसेसिंग हाय मुझे SQL सर्वर के साथ काम करने के लिए डेटा टेबल की सर्वर साइड प्रसंस्करण कार्यक्षमता प्राप्त करने में कुछ समस्याएं आ रही हैं।डेटाटेबल्स v1.10.0

मुझे एक परीक्षण पृष्ठ मिला है जो डेटाबेस तालिका से दो कॉलम प्रदर्शित करना चाहिए (अभी के लिए)।

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title></title> 
    <link rel="Stylesheet" type="text/css" href="DataTables-1.10.0/media/css/jquery.dataTables.min.css" /> 
</head> 
<body> 
<table id="example" class="display" cellspacing="0" width="100%"> 
<thead> 
    <tr> 
      <th align="center">PK</th> 
      <th align="center">Network</th>    
    </tr> 
</thead> 

<tfoot> 
    <tr> 
      <th align="center">PK</th> 
      <th align="center">Network</th>    
    </tr> 
</tfoot> 
</table> 
</body> 
<script type="text/javascript" src="DataTables-1.10.0/media/js/jquery.js"></script> 
<script type="text/javascript" src="DataTables-1.10.0/media/js/jquery.dataTables.min.js"> 

</script> 
<script type="text/javascript" charset="utf-8"> 
$(document).ready(function() { 
    $('#example').dataTable({ 
     "processing": true, 
     "bServerSide": true, 
     "ajax": "PHP/testGetArchive.php" 
    }); 
}); 
</script> 

</html> 

मैं सर्वर साइड कार्यों के लिए यहाँ वेबसाइट पर पाया उदाहरण कोड का उपयोग कर रहा:

http://next.datatables.net/examples/server_side/simple.html

यह php पृष्ठ के अपने संस्करण है बुलाया जा रहा है :

<?php 

/* 
* DataTables example server-side processing script. 
* 
* Please note that this script is intentionally extremely simply to show how 
* server-side processing can be implemented, and probably shouldn't be used as 
* the basis for a large complex system. It is suitable for simple use cases as 
* for learning. 
* 
* 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 
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* Easy set variables 
*/ 

// DB table to use 
$table = 'tblViews'; 

// Table's primary key 
$primaryKey = 'PK'; 

// 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' => 'PK', 'dt' => 0), 
    array('db' => 'Network', 'dt' => 1) 
); 

// SQL server connection information 
$sql_details = array(
    'user' => '******', 
    'pass' => '******', 
    'db' => '******db', 
    'host' => '******\SQLEXPRESS' 
); 


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
* If you just want to use the basic configuration for DataTables with PHP 
* server-side, there is no need to edit below this line. 
*/ 

require('ssp.class.php'); 

echo json_encode(
    SSP::simple($_GET, $sql_details, $table, $primaryKey, $columns) 
); 

यह फिर दूसरा उदाहरण PHP fou कहता है nd यहाँ:

https://github.com/DataTables/DataTables/blob/master/examples/server_side/scripts/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 
*/ 

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 ($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 
    */ 
    static function filter ($request, $columns, &$bindings) 
    { 
     $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 ', $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 
    * @return array   Server-side processing response array 
    */ 
    static function simple ($request, $sql_details, $table, $primaryKey, $columns) 
    { 
     $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); 

     // 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` 
      $where 
      $order 
      $limit" 
     ); 

     // 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) 
     ); 
    } 


    /** 
    * 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) 
      ); 
     } 
     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 
    * @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; 
    } 
} 

मैं कह रही है कि कोड ड्राइवर नहीं मिल सकता है, हालांकि मैं अपने php पर्यावरण दीन स्थापित sqlserv और pdo_sqlsrv ड्राइवर मिल गया है एक त्रुटि मिलती रहती है। क्या इस त्रुटि के कारण कोड पर कुछ गड़बड़ है? क्या मेरे ड्राइवर गलत हैं? इससे संबन्धित किसी भी मदद का स्वागत किया जाएगा। मेरे पास प्रक्रिया के लिए 65,000 पंक्तियों की संख्या है और क्लाइंट को एक ही समय में भेजने के लिए यह असंभव होगा।

उत्तर

10

मुझे थोड़ी देर लग गई लेकिन मुझे पता चला कि मैं कहां गलत हो रहा था और अब मेरे पास सर्वर साइड स्क्रिप्ट के माध्यम से SQL सर्वर के साथ काम कर रहे डेटाटेबल्स हैं। मैं उम्मीद में इस समाधान को पोस्ट कर रहा हूं कि इससे मेरे जैसे किसी और की समस्या होगी। मैंने अपने जवाब भागों में तोड़ दिया है।

पीएचपी पर्यावरण

SQLSRV php के लिए ड्राइवरों here पाया जा सकता है। SQLSRV30.EXE इंस्टॉलर पैकेज डाउनलोड करें। आप पाते हैं कि जब आप इस निष्पादन योग्य को चलाने और चलाने के लिए प्रयास करते हैं तो आपको त्रुटि मिलती है "यह वैध Win32 अनुप्रयोग नहीं है" यदि यह मामला 7-ज़िप जैसी कुछ निष्पादन योग्य को अनजिप करता है। परिणामस्वरूप फ़ाइल में आपके अंदर आवश्यक फाइलें होंगी।

जब आपने पैकेज को अनजिप किया है तो आपको सही ड्राइवर का चयन करने की आवश्यकता है। अधिकांश खिड़कियां प्रतिष्ठानों गैर धागा सुरक्षित ड्राइवरों का उपयोग ये हैं:

php संस्करण 5.3:

php_sqlsrv_53_nts.dll

php_pdo_sqlsrv_53_nts.dll

PHP संस्करण 5.4:

php_sqlsrv_54_nts.dll

php_pdo_sqlsrv_54_nts.dll

उपयुक्त फ़ाइलों को अपनी PHP निर्देशिका में ext फ़ोल्डर में कॉपी करें।अब इन फ़ाइलों का संदर्भ रखने के लिए अपनी php.ini फ़ाइल को संशोधित करें। गतिशील एक्सटेंशन अनुभाग के तहत एक प्रविष्टि जोड़कर ऐसा करें। परिणाम कुछ इस तरह होगा:

extension=php_sqlsrv_54_nts.dll 

और फिर इस तरह मॉड्यूल अनुभाग सेटिंग के तहत ड्राइवर के लिए एक अनुभाग जोड़ने:

[sqlsrv] 
sqlsrv.LogSubSystems=-1 
sqlsrv.LogSeverity=-1 
sqlsrv.WarningsReturnAsErrors=0 

प्रलेखन इन सेटिंग्स के लिए here पाया जा सकता है।

एक बार जब आप इन ड्राइवरों को जोड़ देते हैं और php.ini फ़ाइल में उनका संदर्भ जोड़ते हैं तो आपको यह भी सुनिश्चित करना होगा कि माइक्रोसॉफ्ट एसक्यूएल सर्वर क्लाइंट प्रोफाइल 2012 भी स्थापित है।

These Links have been taken from the PHP.net website:

Microsoft SQL Server Client Profile 2012 x86 Microsoft SQL Server Client profile 2012 x64

एक बार जब आप इन चरणों का प्रदर्शन किया है अपने वेब सर्वर को पुनरारंभ करें। ड्राइवर को अब स्थापित किया जाना चाहिए और उपयोग करने के लिए तैयार होना चाहिए। आप इसे अपनी info.php पेज का उपयोग करके देख सकते हैं।

सर्वर साइड स्क्रिप्ट:

अब जब कि वेब सर्वर एसक्यूएल SRV ड्राइवर का उपयोग करने के लिए अब हम एक SQL सर्वर डेटाबेस क्वेरी करने के लिए उपयोग कर सकते हैं कॉन्फ़िगर किया गया है। मैंने सर्वर साइड स्क्रिप्ट का उपयोग here उपलब्ध कराया है। यहाँ कुछ मुद्दों मैं इसके साथ पाए जाते हैं:

<?php 
    /* Indexed column (used for fast and accurate table cardinality) */ 
    $sIndexColumn = ""; 

    /* DB table to use */ 
    $sTable = ""; 

    /* Database connection information */ 
    $gaSql['user']  = ""; 
    $gaSql['password'] = ""; 
    $gaSql['db']   = ""; 
    $gaSql['server']  = ""; 

    /* 
    * Columns 
    * If you don't want all of the columns displayed you need to hardcode $aColumns array with your elements. 
    * If not this will grab all the columns associated with $sTable 
    */ 
    $aColumns = array(); 


    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
    * If you just want to use the basic configuration for DataTables with PHP server-side, there is 
    * no need to edit below this line 
    */ 

    /* 
    * ODBC connection 
    */ 
    $connectionInfo = array("UID" => $gaSql['user'], "PWD" => $gaSql['password'], "Database"=>$gaSql['db'],"ReturnDatesAsStrings"=>true); 
    $gaSql['link'] = sqlsrv_connect($gaSql['server'], $connectionInfo); 
    $params = array(); 
    $options = array("Scrollable" => SQLSRV_CURSOR_KEYSET); 


    /* Ordering */ 
    $sOrder = ""; 
    if (isset($_GET['iSortCol_0'])) { 
     $sOrder = "ORDER BY "; 
     for ($i=0 ; $i<intval($_GET['iSortingCols']) ; $i++) { 
      if ($_GET[ 'bSortable_'.intval($_GET['iSortCol_'.$i]) ] == "true") { 
       $sOrder .= $aColumns[ intval($_GET['iSortCol_'.$i]) ]." 
        ".addslashes($_GET['sSortDir_'.$i]) .", "; 
      } 
     } 
     $sOrder = substr_replace($sOrder, "", -2); 
     if ($sOrder == "ORDER BY") { 
      $sOrder = ""; 
     } 
    } 

    /* Filtering */ 
    $sWhere = ""; 
    if (isset($_GET['sSearch']) && $_GET['sSearch'] != "") { 
     $sWhere = "WHERE ("; 
     for ($i=0 ; $i<count($aColumns) ; $i++) { 
      $sWhere .= $aColumns[$i]." LIKE '%".addslashes($_GET['sSearch'])."%' OR "; 
     } 
     $sWhere = substr_replace($sWhere, "", -3); 
     $sWhere .= ')'; 
    } 
    /* Individual column filtering */ 
    for ($i=0 ; $i<count($aColumns) ; $i++) { 
     if (isset($_GET['bSearchable_'.$i]) && $_GET['bSearchable_'.$i] == "true" && $_GET['sSearch_'.$i] != '') { 
      if ($sWhere == "") { 
       $sWhere = "WHERE "; 
      } else { 
       $sWhere .= " AND "; 
      } 
      $sWhere .= $aColumns[$i]." LIKE '%".addslashes($_GET['sSearch_'.$i])."%' "; 
     } 
    } 

    /* Paging */ 
    $top = (isset($_GET['iDisplayStart']))?((int)$_GET['iDisplayStart']):0 ; 
    $limit = (isset($_GET['iDisplayLength']))?((int)$_GET['iDisplayLength']):10; 
    $sQuery = "SELECT TOP $limit ".implode(",",$aColumns)." 
     FROM $sTable 
     $sWhere ".(($sWhere=="")?" WHERE ":" AND ")." $sIndexColumn NOT IN 
     (
      SELECT $sIndexColumn FROM 
      (
       SELECT TOP $top ".implode(",",$aColumns)." 
       FROM $sTable 
       $sWhere 
       $sOrder 
      ) 
      as [virtTable] 
     ) 
     $sOrder"; 

    $rResult = sqlsrv_query($gaSql['link'],$sQuery) or die("$sQuery: " . sqlsrv_errors()); 

    $sQueryCnt = "SELECT * FROM $sTable $sWhere"; 
    $rResultCnt = sqlsrv_query($gaSql['link'], $sQueryCnt ,$params, $options) or die (" $sQueryCnt: " . sqlsrv_errors()); 
    $iFilteredTotal = sqlsrv_num_rows($rResultCnt); 

    $sQuery = " SELECT * FROM $sTable "; 
    $rResultTotal = sqlsrv_query($gaSql['link'], $sQuery ,$params, $options) or die(sqlsrv_errors()); 
    $iTotal = sqlsrv_num_rows($rResultTotal); 

    $output = array(
     "sEcho" => intval($_GET['sEcho']), 
     "iTotalRecords" => $iTotal, 
     "iTotalDisplayRecords" => $iFilteredTotal, 
     "aaData" => array() 
    ); 

    while ($aRow = sqlsrv_fetch_array($rResult)) { 
     $row = array(); 
     for ($i=0 ; $i<count($aColumns) ; $i++) { 
      if ($aColumns[$i] != ' ') { 
       $v = $aRow[ $aColumns[$i] ]; 
       $v = mb_check_encoding($v, 'UTF-8') ? $v : utf8_encode($v); 
       $row[]=$v; 
      } 
     } 
     If (!empty($row)) { $output['aaData'][] = $row; } 
    } 
    echo json_encode($output); 
?> 

इंडेक्स्ड कॉलम

जब आप खोजों के लिए उपयोग करने के लिए एक अनुक्रमित स्तंभ निर्दिष्ट यकीन है कि यह स्तंभ सरणी में शामिल है बनाते हैं! यदि आप यह निर्दिष्ट करते हैं कि पेजिंग का उपयोग करने के लिए कौन से कॉलम काम नहीं करेंगे, तो आप इसे छोड़ देंगे। इस कोड के साथ डेटाटेबल्स का पेजिंग सभी प्राथमिक कुंजी का चयन क्वेरी कर रहा है जब शीर्ष एक्स परिणामों में किसी अन्य क्वेरी से नहीं।

कनेक्शन पैरामीटर

सुनिश्चित करें कि कनेक्शन मापदंडों पूर्ण और सही हो। स्क्रिप्ट को डेटाबेस से कनेक्ट करने की अनुमति देने के लिए ये आवश्यक हैं। यदि कोई पैरामीटर नहीं है या पैरामीटर SQL सर्वर लॉगिन के लिए सही नहीं हैं तो स्क्रिप्ट डेटाबेस से कनेक्ट नहीं हो पाएगी।

स्तंभ सरणी

मैंने पाया कि निर्दिष्ट स्तंभों के बिना इस कोड का उपयोग गलत है या शून्य डेटा नहीं दिया। इसे रोकने का सबसे अच्छा तरीका सरणी को कॉलम नामों से भरना था जिसे मैं कोट्स द्वारा संलग्न प्रत्येक को चुनना चाहता था और अल्पविराम से अलग करना चाहता था। यह भी कारण है कि क्लाइंट को आवश्यक डेटा के अलावा कुछ भी क्यों भेजना है?

क्लाइंट साइड

एचटीएमएल

DataTables संचालित करने के लिए एक अच्छी तरह से गठन HTML तालिका की आवश्यकता है। इसका मतलब है पूर्ण टैग के साथ एक टेबल है। यदि डेटा के लौटने के लिए सभी टैग नहीं हैं तो डेटाटेबल्स एक त्रुटि लौटाएंगे।यदि आपके पास कॉलम हैं जिन्हें आप वापस करना चाहते हैं लेकिन शो नहीं करते हैं तो आप ColVis exntension का उपयोग कर सकते हैं और जावा स्क्रिप्ट में डिफ़ॉल्ट कॉलम दृश्य सेटिंग सेट कर सकते हैं।

डेटाटेबल अपनी स्वयं की सीसीएस फ़ाइल का उपयोग करता है, इसलिए सुनिश्चित करें कि आप इसे शामिल करते हैं!

जावा स्क्रिप्ट

DataTables तो फ़ाइल करें कि आप अपने स्क्रिप्ट टैग के भीतर उन्हें के संदर्भ शामिल कर jQuery और अपने स्वयं के Javascrpt का उपयोग करता है!

//Datatables Basic server side initilization 
$(document).ready(function() { 

    //Datatable 
    var table = $('#tableID').DataTable({ 
     "bProcessing": true, 
     "bServerSide": true, 
     "sAjaxSource": "serverSideScript.php" 
    });  
});    

ये सर्वर साइड स्क्रिप्ट के लिए काम करने के लिए आवश्यक बुनियादी कार्य हैं। यह php पेज में निर्दिष्ट डेटाबेस पैरामीटर का उपयोग करके प्रारंभिक ड्रा पर शीर्ष 10 पंक्तियां प्राप्त करेगा। यहां से आप ColVis और TableTools जैसे एक्सटेंशन जोड़ सकते हैं। डेटा एक्सटेंशन के लिए इन एक्सटेंशन और अन्य प्रारंभिक विकल्पों के लिए पूर्ण दस्तावेज़ीकरण here पाया जा सकता है।

मुझे आशा है कि यह उत्तर किसी और की मदद करेगा जिसकी मेरे पास समान समस्याएं हैं।

संबंधित मुद्दे