代码搜索:datetime
找到约 6,148 项符合「datetime」的源代码
代码结果 6,148
www.eeworm.com/read/262948/4307283
sql badusers.sql
#
# Table structure for table 'badusers'
#
CREATE TABLE badusers (
id int(10) DEFAULT '0' NOT NULL auto_increment,
UserName varchar(30),
Date datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
R
www.eeworm.com/read/255402/4376313
sql badusers.sql
#
# Table structure for table 'badusers'
#
CREATE TABLE badusers (
id int(10) DEFAULT '0' NOT NULL auto_increment,
UserName varchar(30),
Date datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
R
www.eeworm.com/read/240751/6783182
sql fecth1.sql
/*取款*/
create procedure fecth1
@type varchar(50),
@no char(13),
@sub1 float,
@date datetime,
@id char(10),
@TT char(10)
as
begin transaction
update bank
set Asset=asset-
www.eeworm.com/read/240751/6783187
sql huandai.sql
create procedure huandai1
@id varchar(10),
@loan_no char(16),
@type nvarchar(50),
@mon float,
@date datetime,
@cishu int
as
begin transaction
/* 计算贷款利息*/
update loan_pack
s
www.eeworm.com/read/240751/6783188
sql deposit_x.sql
create procedure Deposit_t_x
@type varchar(50),
@Number char(15),
@money1 float(8),
@date datetime,
@id char(6),
@riqi integer
as
begin transaction
update customer
set trust_
www.eeworm.com/read/471643/6887718
py date.py
from datetime import date
from time import time
class Date(object):
def __init__(self, time):
self.time = time
d = date.fromtimestamp(time)
self.m = d.month
www.eeworm.com/read/195279/8166749
py cdr_rpt.py
#!/bin/env python
import cgi
# Copyright (C) 2006 Earl C. Terwilliger earl@micpc.com
#
# Reads MySql table to create HTML output for CDR records
import sys, string, os, time, datetime, MySQLdb
www.eeworm.com/read/174006/9612628
txt 10.2.txt
Listing 10.2 Drawing Rectangles with a HatchBrush
private void Form1_Click(object sender, System.EventArgs e)
{
Random randNum = new Random( DateTime.Now.Millisecond );
int width = randNum.Next( t
www.eeworm.com/read/202947/15369164
cpp picturelist.cpp
// PictureList.cpp : implementation file
//
#include "stdafx.h"
#include "MoinorCentre.h"
#include "PictureList.h"
#include"Jpeg.h"
#include"DateTime.h"
#include"DataBaseUI.h"
#ifdef _DEBU
www.eeworm.com/read/388251/8623627
ddplot
#!/usr/bin/env python
# $Id: ddPlot 513 2007-05-03 21:41:15Z tconn $
# A routine to plot the output of ddGen.
import sys, string, time, datetime, numpy, matplotlib, pylab
def main():