PageAdmin网站内容管理系统(CMS)交流论坛

注册

 

QQ登录

只需一步,快速开始

发新话题 回复该主题

数据库变动的问题,谢谢 [复制链接]

1#
想问一下关于数据变动,增加字段,的类型在哪里设置呢?我对ACCESS是一窍不通啊!

0410版升级0601版的数据库变动说明:
1、lanmu1表中增加了以下字段
字段名        类型
zdy_head      备注型
zdy_lanmu    备注型

2、infor1表增加了以下字段
  字段名          类型
  allow_memtype  文本(字段大小200)
3、infor2增加了以下字段
  字段名          类型
  allow_memtype    文本(字段大小200)

4、member_type增加了以下字段
  字段名          类型
  m_set          备注型
5、information增加了以下字段
  字段名          类型
  username    文本(字段大小50)

6、lanmu3 增加了以下字段
  字段名          类型
lanmu2_location    文本(字段大小100)
lanmu3_location    文本(字段大小100)
分享 转发
中国机柜网 www.jigui8.cn
广州机柜www.gzcaden.com
TOP
2#

补充一下,备注型 跟 文本 这两个类型还有括号内字段大小,这些的设置在哪里?
中国机柜网 www.jigui8.cn
广州机柜www.gzcaden.com
TOP
3#

帮你写了一下SQL,你直接按0814方法升级,然后在SQL运行那里输入
  1. alter table lanmu1 add zdy_head ntext,zdy_lanmu ntext;
  2. alter table infor1 add allow_memtype varchar(200);
  3. alter table infor2 add allow_memtype varchar(200);
  4. alter table member_type add m_set text;
  5. alter table information add username varchar(200);
  6. alter table lanmu3 add lanmu2_location varchar(100),lanmu3_location varchar(100)
复制代码
运行后就可以实现0610的数据库变动
TOP
4#

回复 3# apple 的帖子

感激不禁
中国机柜网 www.jigui8.cn
广州机柜www.gzcaden.com
TOP
5#

回复 3# apple 的帖子

0814按你的方式安装上去了,就是有一个小错误 点击自定义表单 的报名系统后出现以下问题
Server Error in '/' Application.
--------------------------------------------------------------------------------

Microsoft Jet 数据库引擎找不到输入表或查询 'zdyform_01'。 确定它是否存在,以及它的名称的拼写是否正确。
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Microsoft Jet 数据库引擎找不到输入表或查询 'zdyform_01'。 确定它是否存在,以及它的名称的拼写是否正确。

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  

Stack Trace:


[OleDbException (0x80040e37): Microsoft Jet 数据库引擎找不到输入表或查询 'zdyform_01'。 确定它是否存在,以及它的名称的拼写是否正确。]
   System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult) +267
   System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult) +192
   System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult) +48
   System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method) +106
   System.Data.OleDb.OleDbCommand.ExecuteReader(CommandBehavior behavior) +111
   System.Data.OleDb.OleDbCommand.ExecuteReader() +6
   PageAdmin.zdyform_data.CaculateRecord() +219
   PageAdmin.zdyform_data.Page_Load(Object src, EventArgs e) +436
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +15
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +34
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +47
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1061




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42

请问什么原因?
中国机柜网 www.jigui8.cn
广州机柜www.gzcaden.com
TOP
发新话题 回复该主题