代码搜索:MSSQL
找到约 1,722 项符合「MSSQL」的源代码
代码结果 1,722
www.eeworm.com/read/172725/5382718
mssql idtable.mssql
#foreach ($tbl in $tables)
insert into ID_TABLE (id_table_id, table_name, next_id, quantity) VALUES ($initialID, '$tbl.Name', $initialIDValue, $initialIDStep);
#set ( $initialID = $initialID + 1 )
#en
www.eeworm.com/read/285437/4050102
properties mssql.properties
sourceType=mssql
url=jdbc:sqlserver://localhost:1433;databaseName=qwoss
user=sa
password=
driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
www.eeworm.com/read/280962/4121079
py mssql.py
# mssql.py
"""MSSQL backend, thru either pymssq, adodbapi or pyodbc interfaces.
* ``IDENTITY`` columns are supported by using SA ``schema.Sequence()``
objects. In other words::
Table('test',
www.eeworm.com/read/280962/4121299
py mssql.py
import testenv; testenv.configure_for_tests()
import re
from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy import exceptions
from sqlalchemy.sql import table, column
from sqlalchemy
www.eeworm.com/read/277227/4157977
sql mssql.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[OS_PROPERTYENTRY]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [OS_PROPERTYENTRY]
GO
if exists (select * from dbo.sysobje