pbootcms网站模板|日韩1区2区|织梦模板||网站源码|日韩1区2区|jquery建站特效-html5模板网

    1. <i id='OFs40'><tr id='OFs40'><dt id='OFs40'><q id='OFs40'><span id='OFs40'><b id='OFs40'><form id='OFs40'><ins id='OFs40'></ins><ul id='OFs40'></ul><sub id='OFs40'></sub></form><legend id='OFs40'></legend><bdo id='OFs40'><pre id='OFs40'><center id='OFs40'></center></pre></bdo></b><th id='OFs40'></th></span></q></dt></tr></i><div class="d5jbr7t" id='OFs40'><tfoot id='OFs40'></tfoot><dl id='OFs40'><fieldset id='OFs40'></fieldset></dl></div>
      • <bdo id='OFs40'></bdo><ul id='OFs40'></ul>
      <legend id='OFs40'><style id='OFs40'><dir id='OFs40'><q id='OFs40'></q></dir></style></legend>
      <tfoot id='OFs40'></tfoot>

        <small id='OFs40'></small><noframes id='OFs40'>

        Laravel:一般錯誤:1615 準備好的語句需要重新準備

        Laravel: General error: 1615 Prepared statement needs to be re-prepared(Laravel:一般錯誤:1615 準備好的語句需要重新準備)
          <tbody id='XjYPb'></tbody>
      1. <legend id='XjYPb'><style id='XjYPb'><dir id='XjYPb'><q id='XjYPb'></q></dir></style></legend>

          <i id='XjYPb'><tr id='XjYPb'><dt id='XjYPb'><q id='XjYPb'><span id='XjYPb'><b id='XjYPb'><form id='XjYPb'><ins id='XjYPb'></ins><ul id='XjYPb'></ul><sub id='XjYPb'></sub></form><legend id='XjYPb'></legend><bdo id='XjYPb'><pre id='XjYPb'><center id='XjYPb'></center></pre></bdo></b><th id='XjYPb'></th></span></q></dt></tr></i><div class="ddbldln" id='XjYPb'><tfoot id='XjYPb'></tfoot><dl id='XjYPb'><fieldset id='XjYPb'></fieldset></dl></div>

              <tfoot id='XjYPb'></tfoot>

              • <small id='XjYPb'></small><noframes id='XjYPb'>

                • <bdo id='XjYPb'></bdo><ul id='XjYPb'></ul>
                • 本文介紹了Laravel:一般錯誤:1615 準備好的語句需要重新準備的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我在 homestead 虛擬機 (vagrant) 中使用最新版本的 laravel (5.1).

                  我將我的項目連接到本地 mariaDB 服務器,其中有一些表和 2 個 db-view.

                  因為我只在 db-view 表上做了一些選擇,所以我隨機收到這個錯誤:

                  <塊引用>

                  一般錯誤:1615 Prepared statement需要重新準備

                  從今天開始,僅在 db 視圖上進行選擇時,我總是會收到此錯誤.如果我打開我的 phpMyAdmin 并進行相同的選擇,它會返回正確的結果.

                  我嘗試打開 php artisan tinker 并選擇 db-view 的一條記錄,但它返回相同的錯誤:

                  //從用戶表中選擇一個用戶>>>$user = 新應用用戶=><應用用戶#000000006dc32a890000000129f667d2>{}>>>$user = AppUser::find(1);=><應用用戶#000000006dc32a9e0000000129f667d2>{編號:1,name: "盧卡",電子郵件:luca@email.it",客戶 ID:1,created_at: "2015-08-06 04:17:57",更新時間:2015-08-11 12:39:01"}>>>//從 Source db-view 中選擇一個源>>>$source = 新 AppSource=><AppSource #000000006dc32a820000000129f667d2>{}>>>$source = AppSource::find(1);IlluminateDatabaseQueryException 帶有消息SQLSTATE[HY000]:一般錯誤:1615 準備好的語句需要重新準備(SQL:select * from `sources` where `sources`.`id` = 1 limit 1)'

                  我該如何解決?我讀到了 mysqldump 的一個問題(但不是我的情況)并增加了 table_definition_cache 的值,但不確定它是否會起作用,我無法修改它們.

                  這是一種 Laravel 錯誤嗎?

                  我怎樣才能弄清楚?

                  <小時>

                  按照要求,我添加了我的模型源代碼.源代碼:

                  hasMany("AppCustomerSource", "sourceId", "id");}/**** @return [類型] [說明]*/公共功能問題(){return $this->hasMany("AppIssue", "sourceId", "id");}}

                  <小時>

                  編輯 2:

                  如果我在項目中使用 mysqli 執行相同的查詢,它會起作用:

                  $db = new mysqli(getenv('DB_HOST'), getenv('DB_USERNAME'), getenv('DB_PASSWORD'), getenv('DB_DATABASE'));if($db->connect_errno>0){dd('無法連接到數據庫 [' . $db->connect_error . ']');}$sql = "SELECT * FROM `sources` WHERE `id` = 4";if(!$result = $db->query($sql)){dd('運行查詢時出錯 [' . $db->e??rror . ']');}dd($result->fetch_assoc());

                  <小時>

                  編輯 3:2個月后,我還在那里.同樣的錯誤,沒有找到解決方案.我決定在 aritsan tinker 中嘗試一些解決方案,但沒有好消息.我報告了我的嘗試:

                  首先嘗試獲取一個表模型:

                  <預><代碼>>>>$user = AppUser::find(1);=>應用用戶 {#697編號:1,name: "盧卡",電子郵件:luca.d@company.it",客戶 ID:1,created_at: "2015-08-06 04:17:57",更新時間:2015-10-27 11:28:14",}

                  現在嘗試獲取一個視圖表模型:

                  <預><代碼>>>>$ir = AppContentRepository::find(15);IlluminateDatabaseQueryException 消息為SQLSTATE[42S02]:未找到基表或視圖:1146 表 'dbname.content_repositories' 不存在(SQL:從 `content_repositories` 中選擇 * 其中 `content_repositories`.`id` = 1限制 1)'

                  當 contentRepository 在模型 ContentRepository.php 中沒有正確的表名設置時:

                  <預><代碼>>>>$pdo = DB::connection()->getPdo();=>PDO {#690交易中:假,錯誤信息:["00000",1146,"表 'dbname.content_repositories' 不存在",],屬性: [案例" =>天然,錯誤模式" =>例外,自動提交" =>1、持久"=>錯誤的,DRIVER_NAME" =>"mysql","SERVER_INFO" =>正常運行時間:2513397 線程:12 問題:85115742 慢查詢:6893568 打開:1596 刷新表:1 打開表:936 查詢每秒平均:33.864","ORACLE_NULLS" =>天然,"CLIENT_VERSION" =>"mysqlnd 5.0.11-dev - 20120503 - $Id: id_here $","SERVER_VERSION" =>"5.5.5-10.0.17-MariaDB-1~wheezy-wsrep-log",STATEMENT_CLASS" =>["PDO 聲明",],"EMULATE_PREPARES" =>0,"CONNECTION_STATUS" =>"通過 TCP/IP 的本地化","DEFAULT_FETCH_MODE" =>兩個都,],}>>>

                  在模型 ContentRepository.php 中更改表值:

                  <預><代碼>>>>$ir = AppContentRepository::find(15);IlluminateDatabaseQueryException 帶有消息SQLSTATE[HY000]:一般錯誤:1615 準備好的語句需要重新準備(SQL:從 `contentRepository` 中選擇 *,其中 `contentRepository`.`id` = 15 limit 1)'

                  正確時,注意缺少的errorInfo":

                  <預><代碼>>>>$pdo = DB::connection()->getPdo();=>PDO {#690交易中:假,屬性: [案例" =>天然,錯誤模式" =>例外,自動提交" =>1、持久"=>錯誤的,DRIVER_NAME" =>"mysql","SERVER_INFO" =>正常運行時間:2589441 線程:13 問題:89348013 慢查詢:7258017 打開:1604 刷新表:1 打開表:943 查詢每秒平均:34.504","ORACLE_NULLS" =>天然,"CLIENT_VERSION" =>"mysqlnd 5.0.11-dev - 20120503 - $Id: id_here $","SERVER_VERSION" =>"5.5.5-10.0.17-MariaDB-1~wheezy-wsrep-log",STATEMENT_CLASS" =>["PDO 聲明",],"EMULATE_PREPARES" =>0,"CONNECTION_STATUS" =>"通過 TCP/IP 的本地IPhere","DEFAULT_FETCH_MODE" =>兩個都,],}

                  顯示數據庫的表:

                  <預><代碼>>>>$tables = DB::select('顯示表格');=>[{#702+"Tables_in_dbname": "table_name_there",},{#683+"Tables_in_dbname": "table_name_there",},{#699+"Tables_in_dbname": "table_name_there",},{#701+"Tables_in_dbname": "table_name_there-20150917-1159",},{#704+"Tables_in_dbname": "contentRepository", */VIEW TABLE IS THERE!!!/*},{#707+"Tables_in_dbname": "table_name_there",},{#684+"Tables_in_dbname": "table_name_there",},]

                  嘗試正常選擇:

                  <預><代碼>>>>$results = DB::select('select * from dbname.contentRepository limit 1');IlluminateDatabaseQueryException 帶有消息SQLSTATE[HY000]:一般錯誤:1615 準備好的語句需要重新準備(SQL:select * from dbname.contentRepository limit 1)"

                  嘗試未準備好的查詢:

                  <預><代碼>>>>DB::unprepared('select * from dbname.contentRepository limit 1')=>錯誤的

                  嘗試第二次未準備好的查詢:

                  <預><代碼>>>>DB::unprepared('select * from dbname.contentRepository limit 1')IlluminateDatabaseQueryException 帶有消息SQLSTATE[HY000]:一般錯誤:2014 無法執行查詢,而其他未緩沖的查詢處于活動狀態.考慮使用 PDOStatement::fetchAll().或者,如果您的代碼只針對 mysql 運行,您可以通過設置 PDO::MYSQL_ATTR_USE_BUFFERED_QUERY 屬性來啟用查詢緩沖.(SQL: select * from dbname.contentRepository limit 1)'

                  試試 PDOStatement::fetchAll():

                  <預><代碼>>>>DB::fetchAll('select * from dbname.contentRepository limit 1');PHP 警告:call_user_func_array() 期望參數 1 是有效的回調,類 'IlluminateDatabaseMySqlConnection' 在/Users/luca/company/Laravel/dbname/vendor/laravel/framework/src 中沒有方法 'fetchAll'/Illuminate/Database/DatabaseManager.php 第 296 行

                  嘗試第二個 PDOStatement::fetchAll():

                  <預><代碼>>>>$pdo::fetchAll('select * from dbname.contentRepository limit 1');[SymfonyComponentDebugExceptionFatalErrorException]調用未定義的方法 PDO::fetchAll()

                  嘗試語句...:

                  <預><代碼>>>>$pdos = DB::statement('select * from dbname.contentRepository limit 1')IlluminateDatabaseQueryException 帶有消息SQLSTATE[HY000]:一般錯誤:1615 準備好的語句需要重新準備(SQL:select * from dbname.contentRepository limit 1)"

                  謝謝

                  解決方案

                  似乎可以添加

                  'options' =>[PDO::ATTR_EMULATE_PREPARES =>真的]

                  在數據庫配置中的projectName/config/database.php 文件中.會是這樣:

                  'mysql' =>['司機' =>'mysql','主機' =>環境('DB_HOST','本地主機'),'數據庫' =>env('DB_DATABASE', '偽造'),'用戶名' =>env('DB_USERNAME', '偽造'),'密碼' =>env('DB_PASSWORD', ''),'字符集' =>'utf8','整理' =>'utf8_unicode_ci','前綴' =>'','嚴格' =>錯誤的,'選項' =>[PDO::ATTR_EMULATE_PREPARES =>真的]],

                  Laravel 5.1.希望能幫到你!

                  我目前使用的是 Laravel 8,這個解決方案仍然有效.

                  I'm using last version of laravel (5.1) in a homestead virtual machine (vagrant).

                  I connect my project to a local mariaDB server, in which I have some table and 2 db-view.

                  Since I made some select only on the db-view tables, I receive back randomly this error:

                  General error: 1615 Prepared statement needs to be re-prepared

                  From today, I always get this error when made select only on the db views. If I open my phpMyAdmin and make the same select it return the correct result.

                  I tried to open php artisan tinker and select one record of the db-view but it return the same error:

                  // Select one user from user table
                  >>> $user = new AppUser
                  => <AppUser #000000006dc32a890000000129f667d2> {}
                  >>> $user = AppUser::find(1);
                  => <AppUser #000000006dc32a9e0000000129f667d2> {
                         id: 1,
                         name: "Luca",
                         email: "luca@email.it",
                         customerId: 1,
                         created_at: "2015-08-06 04:17:57",
                         updated_at: "2015-08-11 12:39:01"
                     }
                  >>> 
                  // Select one source from Source db-view
                  >>> $source = new AppSource
                  => <AppSource #000000006dc32a820000000129f667d2> {}
                  >>> $source = AppSource::find(1);
                  IlluminateDatabaseQueryException with message 'SQLSTATE[HY000]: General error: 1615 Prepared statement needs to be re-prepared (SQL: select * from `sources` where `sources`.`id` = 1 limit 1)'
                  

                  How can I fix that? I read about a problem with mysqldump (but not in my case) and to increase value of table_definition_cache but it is not sure that it will work and I can't modify them.

                  Is this a kind of laravel bug?

                  How can I figure that out?


                  Edit:

                  As asked, I add my model source code. Source.php:

                  <?php
                  
                  namespace App;
                  
                  use IlluminateDatabaseEloquentModel;
                  
                  class Source extends Model
                  {
                      protected $table = 'sources';
                  
                  
                      /*
                      |--------------------------------------------------------------------------
                      | FOREIGN KEYS
                      |--------------------------------------------------------------------------
                      */
                  
                      /**
                       * 
                       * @return [type] [description]
                       */
                      public function customersList(){
                          return $this->hasMany("AppCustomerSource", "sourceId", "id");
                      }
                  
                  
                      /**
                       * 
                       * @return [type] [description]
                       */
                      public function issues(){
                          return $this->hasMany("AppIssue", "sourceId", "id");
                      }
                  }
                  


                  Edit 2:

                  If I execute the same query in the project with mysqli it works:

                  $db = new mysqli(getenv('DB_HOST'), getenv('DB_USERNAME'), getenv('DB_PASSWORD'), getenv('DB_DATABASE'));
                  if($db->connect_errno > 0){
                      dd('Unable to connect to database [' . $db->connect_error . ']');
                  }
                  $sql = "SELECT * FROM `sources` WHERE `id` = 4";
                  if(!$result = $db->query($sql)){
                      dd('There was an error running the query [' . $db->error . ']');
                  }
                  
                  dd($result->fetch_assoc());
                  


                  EDIT 3: Afeter 2 month, I'm still there. Same error and no solution found. I decide to try a little solution in aritsan tinker but no good news. I report what I've tried:

                  First try to fetch a table model:

                  >>> $user = AppUser::find(1);
                  => AppUser {#697
                       id: 1,
                       name: "Luca",
                       email: "luca.d@company.it",
                       customerId: 1,
                       created_at: "2015-08-06 04:17:57",
                       updated_at: "2015-10-27 11:28:14",
                     }
                  

                  Now try to fetch a view table model:

                  >>> $ir = AppContentRepository::find(15);
                  IlluminateDatabaseQueryException with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dbname.content_repositories' doesn't exist (SQL: select * from `content_repositories` where `content_repositories`.`id` = 1 limit 1)'
                  

                  When contentRepository doesn't have correct table name setup inside the model ContentRepository.php:

                  >>> $pdo = DB::connection()->getPdo();
                  => PDO {#690
                       inTransaction: false,
                       errorInfo: [
                         "00000",
                         1146,
                         "Table 'dbname.content_repositories' doesn't exist",
                       ],
                       attributes: [
                         "CASE" => NATURAL,
                         "ERRMODE" => EXCEPTION,
                         "AUTOCOMMIT" => 1,
                         "PERSISTENT" => false,
                         "DRIVER_NAME" => "mysql",
                         "SERVER_INFO" => "Uptime: 2513397  Threads: 12  Questions: 85115742  Slow queries: 6893568  Opens: 1596  Flush tables: 1  Open tables: 936  Queries per second avg: 33.864",
                         "ORACLE_NULLS" => NATURAL,
                         "CLIENT_VERSION" => "mysqlnd 5.0.11-dev - 20120503 - $Id: id_here $",
                         "SERVER_VERSION" => "5.5.5-10.0.17-MariaDB-1~wheezy-wsrep-log",
                         "STATEMENT_CLASS" => [
                           "PDOStatement",
                         ],
                         "EMULATE_PREPARES" => 0,
                         "CONNECTION_STATUS" => "localiphere via TCP/IP",
                         "DEFAULT_FETCH_MODE" => BOTH,
                       ],
                     }
                  >>> 
                  

                  CHANGE TABLE VALUE INSIDE model ContentRepository.php:

                  >>> $ir = AppContentRepository::find(15);
                  IlluminateDatabaseQueryException with message 'SQLSTATE[HY000]: General error: 1615 Prepared statement needs to be re-prepared (SQL: select * from `contentRepository` where `contentRepository`.`id` = 15 limit 1)'
                  

                  When it is correct, pay attention to "errorInfo" that is missing:

                  >>> $pdo = DB::connection()->getPdo();
                  => PDO {#690
                       inTransaction: false,
                       attributes: [
                         "CASE" => NATURAL,
                         "ERRMODE" => EXCEPTION,
                         "AUTOCOMMIT" => 1,
                         "PERSISTENT" => false,
                         "DRIVER_NAME" => "mysql",
                         "SERVER_INFO" => "Uptime: 2589441  Threads: 13  Questions: 89348013  Slow queries: 7258017  Opens: 1604  Flush tables: 1  Open tables: 943  Queries per second avg: 34.504",
                         "ORACLE_NULLS" => NATURAL,
                         "CLIENT_VERSION" => "mysqlnd 5.0.11-dev - 20120503 - $Id: id_here $",
                         "SERVER_VERSION" => "5.5.5-10.0.17-MariaDB-1~wheezy-wsrep-log",
                         "STATEMENT_CLASS" => [
                           "PDOStatement",
                         ],
                         "EMULATE_PREPARES" => 0,
                         "CONNECTION_STATUS" => "localIPhere via TCP/IP",
                         "DEFAULT_FETCH_MODE" => BOTH,
                       ],
                     }
                  

                  Show db's tables:

                  >>> $tables = DB::select('SHOW TABLES');
                  => [
                       {#702
                         +"Tables_in_dbname": "table_name_there",
                       },
                       {#683
                         +"Tables_in_dbname": "table_name_there",
                       },
                       {#699
                         +"Tables_in_dbname": "table_name_there",
                       },
                       {#701
                         +"Tables_in_dbname": "table_name_there-20150917-1159",
                       },
                       {#704
                         +"Tables_in_dbname": "contentRepository", */ VIEW TABLE IS THERE!!!! /*
                       },
                       {#707
                         +"Tables_in_dbname": "table_name_there",
                       },
                       {#684
                         +"Tables_in_dbname": "table_name_there",
                       },
                     ]
                  

                  Try with normal select:

                  >>> $results = DB::select('select * from dbname.contentRepository limit 1');
                  IlluminateDatabaseQueryException with message 'SQLSTATE[HY000]: General error: 1615 Prepared statement needs to be re-prepared (SQL: select * from dbname.contentRepository limit 1)'
                  

                  Try unprepared query:

                  >>> DB::unprepared('select * from dbname.contentRepository limit 1')
                  => false
                  

                  Try second time unprepared query:

                  >>> DB::unprepared('select * from dbname.contentRepository limit 1')
                  IlluminateDatabaseQueryException with message 'SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active.  Consider using PDOStatement::fetchAll().  Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute. (SQL: select * from dbname.contentRepository limit 1)'
                  

                  Try PDOStatement::fetchAll():

                  >>> DB::fetchAll('select * from dbname.contentRepository limit 1'); 
                  PHP warning:  call_user_func_array() expects parameter 1 to be a valid callback, class 'IlluminateDatabaseMySqlConnection' does not have a method 'fetchAll' in /Users/luca/company/Laravel/dbname/vendor/laravel/framework/src/Illuminate/Database/DatabaseManager.php on line 296
                  

                  Try second PDOStatement::fetchAll():

                  >>> $pdo::fetchAll('select * from dbname.contentRepository limit 1');
                    [SymfonyComponentDebugExceptionFatalErrorException]  
                    Call to undefined method PDO::fetchAll()           
                  

                  Try statement... :

                  >>> $pdos = DB::statement('select * from dbname.contentRepository limit 1')
                  IlluminateDatabaseQueryException with message 'SQLSTATE[HY000]: General error: 1615 Prepared statement needs to be re-prepared (SQL: select * from dbname.contentRepository limit 1)'
                  

                  Thank you

                  解決方案

                  It seems to work adding

                  'options'   => [
                                  PDO::ATTR_EMULATE_PREPARES => true
                              ]
                  

                  Inside projectName/config/database.php file in DB configuration. It will be like this:

                  'mysql' => [
                      'driver'    => 'mysql',
                      'host'      => env('DB_HOST', 'localhost'),
                      'database'  => env('DB_DATABASE', 'forge'),
                      'username'  => env('DB_USERNAME', 'forge'),
                      'password'  => env('DB_PASSWORD', ''),
                      'charset'   => 'utf8',
                      'collation' => 'utf8_unicode_ci',
                      'prefix'    => '',
                      'strict'    => false,
                      'options'   => [
                          PDO::ATTR_EMULATE_PREPARES => true
                      ]
                  ],
                  

                  Laravel 5.1. Hope it will help!

                  Edit: I'm currently on Laravel 8 and this solution is still working.

                  這篇關于Laravel:一般錯誤:1615 準備好的語句需要重新準備的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)

                        <tbody id='8aWHF'></tbody>

                    • <legend id='8aWHF'><style id='8aWHF'><dir id='8aWHF'><q id='8aWHF'></q></dir></style></legend>
                      <i id='8aWHF'><tr id='8aWHF'><dt id='8aWHF'><q id='8aWHF'><span id='8aWHF'><b id='8aWHF'><form id='8aWHF'><ins id='8aWHF'></ins><ul id='8aWHF'></ul><sub id='8aWHF'></sub></form><legend id='8aWHF'></legend><bdo id='8aWHF'><pre id='8aWHF'><center id='8aWHF'></center></pre></bdo></b><th id='8aWHF'></th></span></q></dt></tr></i><div class="vnjfp5d" id='8aWHF'><tfoot id='8aWHF'></tfoot><dl id='8aWHF'><fieldset id='8aWHF'></fieldset></dl></div>
                    • <tfoot id='8aWHF'></tfoot>
                      • <small id='8aWHF'></small><noframes id='8aWHF'>

                            <bdo id='8aWHF'></bdo><ul id='8aWHF'></ul>
                            主站蜘蛛池模板: 紫外可见光分光度计-紫外分光度计-分光光度仪-屹谱仪器制造(上海)有限公司 | 理化生实验室设备,吊装实验室设备,顶装实验室设备,实验室成套设备厂家,校园功能室设备,智慧书法教室方案 - 东莞市惠森教学设备有限公司 | 三板富 | 专注于新三板的第一垂直服务平台 | 志高装潢官网-苏州老房旧房装修改造-二手房装修翻新 | 杭州代理记账多少钱-注册公司代办-公司注销流程及费用-杭州福道财务管理咨询有限公司 | 耐酸碱泵-自吸耐酸碱泵型号「品牌厂家」立式耐酸碱泵价格-昆山国宝过滤机有限公司首页 | 砂石生产线_石料生产线设备_制砂生产线设备价格_生产厂家-河南中誉鼎力智能装备有限公司 | 工业插头-工业插头插座【厂家】-温州罗曼电气 | sfp光模块,高速万兆光模块工厂-性价比更高的光纤模块制造商-武汉恒泰通 | 科普仪器菏泽市教育教学仪器总厂 | 南京兰江泵业有限公司-水解酸化池潜水搅拌机-絮凝反应池搅拌机-好氧区潜水推进器 | 二手光谱仪维修-德国OBLF光谱仪|进口斯派克光谱仪-热电ARL光谱仪-意大利GNR光谱仪-永晖检测 | 塑木弯曲试验机_铜带拉伸强度试验机_拉压力测试台-倾技百科 | 作文导航网_作文之家_满分作文_优秀作文_作文大全_作文素材_最新作文分享发布平台 | 高考志愿规划师_高考规划师_高考培训师_高报师_升学规划师_高考志愿规划师培训认证机构「向阳生涯」 | 多功能干燥机,过滤洗涤干燥三合一设备-无锡市张华医药设备有限公司 | 香蕉筛|直线|等厚|弧形|振动筛|香蕉筛厂家-洛阳隆中重工 | 粉丝机械,粉丝烘干机,粉丝生产线-招远市远东粉丝机械有限公司 | 菲希尔X射线测厚仪-菲希尔库伦法测厚仪-无锡骏展仪器有限责任公司 | 世纪豪门官网 世纪豪门集成吊顶加盟电话 世纪豪门售后电话 | 乙炔气体报警装置|固定式氯化氢检测仪|河南驰诚电气百科 | 净化板-洁净板-净化板价格-净化板生产厂家-山东鸿星新材料科技股份有限公司 | 金属波纹补偿器厂家_不锈钢膨胀节价格_非金属伸缩节定制-庆达补偿器 | 重庆磨床过滤机,重庆纸带过滤机,机床伸缩钣金,重庆机床钣金护罩-重庆达鸿兴精密机械制造有限公司 | 铣刨料沥青破碎机-沥青再生料设备-RAP热再生混合料破碎筛分设备 -江苏锡宝重工 | 样品瓶(色谱样品瓶)百科-浙江哈迈科技有限公司 | 诸城网站建设-网络推广-网站优化-阿里巴巴托管-诸城恒泰互联 | 福建成考网-福建成人高考网 | 上海橡胶接头_弹簧减震器_金属软接头厂家-上海淞江集团 | 万家财经_财经新闻_在线财经资讯网 | 【同风运车官网】一站式汽车托运服务平台,验车满意再付款 | 欧盟ce检测认证_reach检测报告_第三方检测中心-深圳市威腾检验技术有限公司 | 超声波焊接机,振动摩擦焊接机,激光塑料焊接机,超声波焊接模具工装-德召尼克(常州)焊接科技有限公司 | 国际船舶网 - 船厂、船舶、造船、船舶设备、航运及海洋工程等相关行业综合信息平台 | 滚筒线,链板线,总装线,流水线-上海体能机电有限公司 | 搜活动房网—活动房_集装箱活动房_集成房屋_活动房屋 | 南京技嘉环保科技有限公司-杀菌除臭剂|污水|垃圾|厕所|橡胶厂|化工厂|铸造厂除臭剂 | 耐高温风管_耐高温软管_食品级软管_吸尘管_钢丝软管_卫生级软管_塑料波纹管-东莞市鑫翔宇软管有限公司 | 安徽千住锡膏_安徽阿尔法锡膏锡条_安徽唯特偶锡膏_卡夫特胶水-芜湖荣亮电子科技有限公司 | 酶联免疫分析仪-多管旋涡混合仪|混合器-莱普特科学仪器(北京)有限公司 | 粉末包装机-给袋式包装机-全自动包装机-颗粒-液体-食品-酱腌菜包装机生产线【润立机械】 |