① 织梦数据库能用oracle数据库吗
您好,朋友。跟版
网团
队很高兴为您解答:
1.
首先
织梦
数据库能用oracle,这个问题的话,我可以告诉你,是可以的。但是需要修改的地方比较多,而且如果进行了修改,在性能上可能不如原版好。
2.
织梦默认的数据库是mysql,语言是php。php+mysql这两个结合还是使用的比较多的。而且如果你要用oracle的话,oracle应该是需要收费的。
3.
个人建议:如果没有比较精通的php和
oracle技术
的话,就不要去修改了。这个修改是比较复杂的。
希望我的回答能够帮到您。跟版网-专业织梦模板定制下载站。www.genban.org
② 织梦能干什么织梦用的什么数据库
织梦内容管理系统(DedeCms) 以简单、实用、开源而闻名,是国内最知名的PHP开源网站管理系统,也是使用用户最多的PHP类CMS系统,在经历多年的发展,目前的版本无论在功能,还是在易用性方面,都有了长足的发展和进步,DedeCms免费版的主要目标用户锁定在个人站长,功能更专注于个人网站或中小型门户的构建,不乏有企业用户和学校等在使用本系统。
企业网站,无论大型还是中小型企业,利用网络传递信息在一定程度上提高了办事的效率,提高企业的竞争力。DedeCMS网站建设系统做各种网站,DedeCMS是什么,DedeCMS是一个自由和开放源码的内容管理系统,它是一个可以独立使用的内容发布系统(CMS)。在中国,DedeCMS属于最受人们喜爱的CMS系统。
优点
易用:使用织梦你可以用十分钟学习它,十分钟搭建一个。
完善:织梦基本包含了一个常规网站需要的一切功能。
丰富的资料:作为一个国内cms,织梦拥有完善的中文学习资料。
丰富的模版:织梦拥有大量免费的漂亮模版,你可以自由的使用它们。
缺点
缺乏灵活性:高度的功能集成造成了织梦灵活性的缺失,所以织梦扩展性并不是很好。
安全:织梦作为一个国内开源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