當前位置:首頁 » 數據倉庫 » 織夢用什麼資料庫
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

織夢用什麼資料庫

發布時間: 2023-08-26 06:31:32

① 織夢資料庫能用oracle資料庫嗎

您好,朋友。跟版
網團
隊很高興為您解答:
1.
首先
織夢
資料庫能用oracle,這個問題的話,我可以告訴你,是可以的。但是需要修改的地方比較多,而且如果進行了修改,在性能上可能不如原版好。
2.
織夢默認的資料庫是mysql,語言是php。php+mysql這兩個結合還是使用的比較多的。而且如果你要用oracle的話,oracle應該是需要收費的。
3.
個人建議:如果沒有比較精通的php和
oracle技術
的話,就不要去修改了。這個修改是比較復雜的。
希望我的回答能夠幫到您。跟版網-專業織夢模板定製下載站。www.genban.org

② 織夢能幹什麼織夢用的什麼資料庫

  1. 織夢內容管理系統(DedeCms) 以簡單、實用、開源而聞名,是國內最知名的PHP開源網站管理系統,也是使用用戶最多的PHP類CMS系統,在經歷多年的發展,目前的版本無論在功能,還是在易用性方面,都有了長足的發展和進步,DedeCms免費版的主要目標用戶鎖定在個人站長,功能更專注於個人網站或中小型門戶的構建,不乏有企業用戶和學校等在使用本系統。

  2. 企業網站,無論大型還是中小型企業,利用網路傳遞信息在一定程度上提高了辦事的效率,提高企業的競爭力。DedeCMS網站建設系統做各種網站,DedeCMS是什麼,DedeCMS是一個自由和開放源碼的內容管理系統,它是一個可以獨立使用的內容發布系統(CMS)。在中國,DedeCMS屬於最受人們喜愛的CMS系統。

  3. 優點

    易用:使用織夢你可以用十分鍾學習它,十分鍾搭建一個。

    完善:織夢基本包含了一個常規網站需要的一切功能。

    豐富的資料:作為一個國內cms,織夢擁有完善的中文學習資料。

    豐富的模版:織夢擁有大量免費的漂亮模版,你可以自由的使用它們。

  4. 缺點

    缺乏靈活性:高度的功能集成造成了織夢靈活性的缺失,所以織夢擴展性並不是很好。

    安全:織夢作為一個國內開源cms,社區缺乏更好技術支持和環境,所以漏洞頻發。

    社區:織夢的官方社區是收費的,這對於一個開源項目來說本身就是一個問題。

    織夢用Mysql資料庫

③ dedecms 網站欄目存放在哪個資料庫

您要問的是不是織夢的網站欄目存放的數據表吧!
其實網站欄目這塊信息是存放在多個表中,其中dede_archives 是主表,這個裡面有存放到欄目的id,即typeid,另外dede_arctype 存放了欄目鏈接,欄目名稱等等信息。
另外如果您要找織夢資料庫鏈接文件,在data目錄下的common.inc.php中,比較麻煩,樓主可以用搜外6系統

④ 織夢資料庫在哪個文件夾

織夢資料庫是mysql類型的,php程序,和asp程序是有區別的,
asp程序的資料庫是在空間上存放即可,
php程序用的是phpmyadmin應用程序存放mysql資料庫的。不在空間內;
網站搬家的話可以備份資料庫(用後台細帶的程序或帝國備份王備份王均可)。

⑤ 織夢系統(dede)支持SQL2000嗎

原則上是支持的,但是DEDE的環境是用PHP+MYSQL來建設的,還好創始人開始的過程比較規范化,算是符合MVC的結構,如果你想用別的資料庫,如SQL2000來代替MYSQL,那麼你就要把資料庫操作基類換掉,
資料庫基類存放的位置:/include/dedesql.class.php

你要做的工作就是保持這個類的所有屬性和方法,然後把MYSQL的函數換成MSSQL的函數。

mssql_bind -- Adds a parameter to a stored procere or a remote stored procere
mssql_close -- Close MS SQL Server connection
mssql_connect -- Open MS SQL server connection
mssql_data_seek -- Moves internal row pointer
mssql_execute -- Executes a stored procere on a MS SQL server database
mssql_fetch_array -- Fetch a result row as an associative array, a numeric array, or both
mssql_fetch_assoc -- Returns an associative array of the current row in the result set specified by result_id
mssql_fetch_batch -- Returns the next batch of records
mssql_fetch_field -- Get field information
mssql_fetch_object -- Fetch row as object
mssql_fetch_row -- Get row as enumerated array
mssql_field_length -- Get the length of a field
mssql_field_name -- Get the name of a field
mssql_field_seek -- Seeks to the specified field offset
mssql_field_type -- Gets the type of a field
mssql_free_result -- Free result memory
mssql_free_statement -- Free statement memory
mssql_get_last_message -- Returns the last message from the server
mssql_guid_string -- Converts a 16 byte binary GUID to a string
mssql_init -- Initializes a stored procere or a remote stored procere
mssql_min_error_severity -- Sets the lower error severity
mssql_min_message_severity -- Sets the lower message severity
mssql_next_result -- Move the internal result pointer to the next result
mssql_num_fields -- Gets the number of fields in result
mssql_num_rows -- Gets the number of rows in result
mssql_pconnect -- Open persistent MS SQL connection
mssql_query -- Send MS SQL query
mssql_result -- Get result data
mssql_rows_affected -- Returns the number of records affected by the query
mssql_select_db -- Select MS SQL database