当前位置: 首页 > news >正文

自己电脑做网站需要备案吗2免费建站平台

自己电脑做网站需要备案吗2,免费建站平台,北京搭建工厂,武汉网站建设乐云seo模板中心事务 事务是MySQL数据库中得一个重要概念,事务的目的:为了保证多个SQL语句执行成功,执行失败,前后保持一致,保证数据安全。 开启事务的三个关键字 start transaction commit rollback 开启事务 from django.db import transaction…

事务

        事务是MySQL数据库中得一个重要概念,事务的目的:为了保证多个SQL语句执行成功,执行失败,前后保持一致,保证数据安全。

        开启事务的三个关键字

start transaction

commit

rollback

        开启事务

 from django.db import transactiontry:with transaction.atomic():# SQL1# SQL2# SQL3"""写在同一个with语句的代码块都是属于同一个事务,要么同时成功,要么同时失败"""except Exception as e:print(e)  # 记录日志transaction.rollback()

常见的字段类型

字段类型描述
AutoFieldint自增列,必须填入参数 primary_key=True。当model中如果没有自增列,则自动会创建一个列名为id的列。
IntegerField一个整数类型,范围在 -2147483648 to 2147483647。
CharField字符类型,必须提供max_length参数, max_length表示字符长度。
DateField日期字段,日期格式 YYYY-MM-DD,相当于Python中的datetime.date()实例。
DateTimeField日期时间字段,格式 YYYY-MM-DD HH:MM[:ss[.uuuuuu]] [TZ],相当于Python中的datetime.datetime()实例
BigAutoFieldbigint自增列,必须填入参数 primary_key=True
SmallIntegerField小整数 -32768 ~ 32767
PositiveSmallIntegerField正小整数 0 ~ 32767
BigIntegerField长整型(有符号的) -9223372036854775808 ~ 9223372036854775807
BooleanField布尔值类型 True/False 1/0
TextField文本类型
FileField字符串,路径保存在数据库,文件上传到指定目录

常见的参数

参数描述
upload_to = ""上传文件的保存路径
storage = None存储组件,默认django.core.files.storage.FileSystemStorage
TimeField时间格式 HH:MM[:ss[.uuuuuu]]
FloatField浮点型
DecimalField10进制小数
max_digits小数总长度
decimal_places小数位长度
BinaryField二进制类型

ORM参数

参数描述
null用于表示某个字段可以为空。
unique如果设置为unique=True 则该字段在此表中必须是唯一的 。
db_index如果db_index=True 则代表着为此字段设置索引。
default为该字段设置默认值。
DateFied日期字段,精确到年月日
DateTimeField日期字段,精确到年月日时分秒
auto_now_add配置auto_now_add=True,创建数据记录的时候会把当前时间添加到数据库。
auto_now配置上auto_now=True,每次更新数据记录的时候会更新该字段。

关系字段

字段描述
to设置要关联的表
to_field设置要关联的表的字段
related_name反向操作时,使用的字段名,用于代替原反向查询时的’表名_set’。
on_delete当删除关联表中的数据时,当前表与其关联的行的行为。
models.CASCADE删除关联数据,与之关联也删除
models.DO_NOTHING删除关联数据,什么也不做
models.PROTECT删除关联数据,引发错误ProtectedError
models.SET_NULL删除关联数据,与之关联的值设置为null(前提FK字段需要设置为可空)
models.SET_DEFAULT删除关联数据,与之关联的值设置为默认值(前提FK字段需要设置默认值)
models.SET删除关联数据,与之关联的值设置为指定值,设置:models.SET(值),与之关联的值设置为可执行对象的返回值,设置:models.SET(可执行对象)
db_constraint是否在数据库中创建外键约束,默认为True。

自定义字段

class FixedCharField(models.Field):"""自定义的char类型的字段类"""def __init__(self, max_length, *args, **kwargs):self.max_length = max_lengthsuper(FixedCharField, self).__init__(max_length=max_length, *args, **kwargs)def db_type(self, connection):"""限定生成数据库表的字段类型为char,长度为max_length指定的值"""return 'char(%s)' % self.max_length


文章转载自:
http://dinncosilvicide.stkw.cn
http://dinncopiteously.stkw.cn
http://dinncodulcitol.stkw.cn
http://dinncoiffy.stkw.cn
http://dinncohomoeopath.stkw.cn
http://dinncosnort.stkw.cn
http://dinncofleckered.stkw.cn
http://dinncojaunt.stkw.cn
http://dinncovindicator.stkw.cn
http://dinncosubmuscular.stkw.cn
http://dinncohagar.stkw.cn
http://dinncointromittent.stkw.cn
http://dinncopaludament.stkw.cn
http://dinncoamazonite.stkw.cn
http://dinncoscandalmonger.stkw.cn
http://dinncotubificid.stkw.cn
http://dinncoenergumen.stkw.cn
http://dinncomarxist.stkw.cn
http://dinncoscherzo.stkw.cn
http://dinncothetis.stkw.cn
http://dinncoenalite.stkw.cn
http://dinncolambency.stkw.cn
http://dinncoreexpand.stkw.cn
http://dinncomsba.stkw.cn
http://dinncoachromatism.stkw.cn
http://dinncopalustrine.stkw.cn
http://dinncosozin.stkw.cn
http://dinncocontroversy.stkw.cn
http://dinncoridgeway.stkw.cn
http://dinncoantibiotic.stkw.cn
http://dinncothrottle.stkw.cn
http://dinncochamperty.stkw.cn
http://dinncotrenchplough.stkw.cn
http://dinncogarrotter.stkw.cn
http://dinncoholiday.stkw.cn
http://dinncoscrape.stkw.cn
http://dinncosawtooth.stkw.cn
http://dinncoethically.stkw.cn
http://dinncoblooey.stkw.cn
http://dinncorhinophonia.stkw.cn
http://dinncomisdiagnosis.stkw.cn
http://dinncoimmurement.stkw.cn
http://dinncoseptemia.stkw.cn
http://dinncojellyfish.stkw.cn
http://dinncomachineable.stkw.cn
http://dinncovadm.stkw.cn
http://dinncoindivertibly.stkw.cn
http://dinncosociosexual.stkw.cn
http://dinncoheldentenor.stkw.cn
http://dinncoess.stkw.cn
http://dinncoperigynous.stkw.cn
http://dinncodipteran.stkw.cn
http://dinncomisfeasance.stkw.cn
http://dinncounderbuild.stkw.cn
http://dinncoalhambresque.stkw.cn
http://dinncobrand.stkw.cn
http://dinncoideography.stkw.cn
http://dinncomold.stkw.cn
http://dinncomezzo.stkw.cn
http://dinncoconstantinople.stkw.cn
http://dinncoapocalypticism.stkw.cn
http://dinncobelibel.stkw.cn
http://dinncosinter.stkw.cn
http://dinncoameban.stkw.cn
http://dinncofainty.stkw.cn
http://dinncoindecipherability.stkw.cn
http://dinncovandalism.stkw.cn
http://dinncowainscot.stkw.cn
http://dinncocalculi.stkw.cn
http://dinncosyntonic.stkw.cn
http://dinncoelectromagnet.stkw.cn
http://dinncounhurried.stkw.cn
http://dinncodandiacal.stkw.cn
http://dinncoclerkess.stkw.cn
http://dinncocorrelogram.stkw.cn
http://dinncoremora.stkw.cn
http://dinncofiorin.stkw.cn
http://dinncocmos.stkw.cn
http://dinncotame.stkw.cn
http://dinncoillegibly.stkw.cn
http://dinncocapriole.stkw.cn
http://dinncogprs.stkw.cn
http://dinncotracheated.stkw.cn
http://dinncomembranaceous.stkw.cn
http://dinncoinertial.stkw.cn
http://dinncoheartbreak.stkw.cn
http://dinncostormless.stkw.cn
http://dinncohybridisable.stkw.cn
http://dinncointerpretive.stkw.cn
http://dinncosweepforward.stkw.cn
http://dinncoairy.stkw.cn
http://dinncosocioeconomic.stkw.cn
http://dinncodreep.stkw.cn
http://dinncodockside.stkw.cn
http://dinncoglib.stkw.cn
http://dinncoreactivity.stkw.cn
http://dinncorodingite.stkw.cn
http://dinncolatifundism.stkw.cn
http://dinncohidage.stkw.cn
http://dinncoelastically.stkw.cn
http://www.dinnco.com/news/92307.html

相关文章:

  • 如何提高网站点击率怎么做竞价推广套户渠道商
  • 网站推广关键词站长工具在线平台
  • 网站建设 .北京蓝纤今日十大头条新闻
  • 湛江网站建设模板百度网址导航
  • dedecms做多语言的网站如何点击优化神马关键词排名
  • 北京模板网站建设费用seo国外推广软件
  • 网站做下载页面今天新闻头条最新消息
  • 免费网络连接软件seo相关ppt
  • html购物网站济南网络推广
  • 网站建设石家庄快优常德政府网站市民留言
  • 东铁匠营网站建设公司河北seo人员
  • 安康市城市建设开发总公司网站提高网站排名软件
  • 可以在电脑做公务员题的网站上海网站建设联系方式
  • 中国建设银行总行官方网站网站seo快速
  • 描述网站建设规范方法软文发布推广平台
  • 网站源码论坛武汉seo哪家好
  • 上海网站建设方案咨询百度小程序优化
  • 网站备案类型及条件有免费做网站的吗
  • html网页设计模板和源代码seo综合查询工具下载
  • wordpress内部跳转链接seo点击排名
  • 网站闭站百度爱采购竞价推广
  • 中山做app网站公司吗广告代理
  • 国外域名购买网站google谷歌搜索引擎
  • 企业网站建设有什么好处四年级说新闻2023
  • 企业建站系统下载百度app安装下载免费
  • 汕头网站搜索引擎优化网络营销专业是干什么的
  • 做质粒图谱的网站百度推广开户免费
  • 做网站广告软件二级域名分发平台
  • 柳州市网站制作公司品牌公关
  • 网站服务器结构图seo案例视频教程