代码搜索:Retrieve
找到约 2,147 项符合「Retrieve」的源代码
代码结果 2,147
www.eeworm.com/read/100285/6272070
sql transactions.sql
--
-- transaction blocks
--
BEGIN;
SELECT *
INTO TABLE xacttest
FROM aggtest;
INSERT INTO xacttest (a, b) VALUES (777, 777.777);
END;
-- should retrieve one value--
SELECT a FROM xacttest W
www.eeworm.com/read/408881/11366276
java definecolumntype.java
/*
* This sample shows how to use the "define" extensions.
* The define extensions allow the user to specify the types
* under which to retrieve column data in a query.
*
* This saves round-trip
www.eeworm.com/read/345593/11806925
pas unit1.pas
{: Using the TJoystick to retrieve joystick position.
The component make it fairly easy to get this info. The first method is to use
the events, the second it use its properties.
www.eeworm.com/read/342008/12047138
m getimheight.m
%getimheight Retrieve image height
%
% s = getimheight(a)
%
% Retrieves the image height of the dataset A. Note that if s < 0 the
% images with vertical image size abs(s) are stored as features. If s
www.eeworm.com/read/152070/12146502
msg dmonip.msg
DMonIP is a Delphi application that illustrates the use of Delphi with NetWare APIs.
It will show how to use the IP Helper DLL to retrieve information about the local LAN hardware.
See the Microso
www.eeworm.com/read/131204/14156832
py connector.py
""" HarvestManUrlConnector.py - Module to manage and retrieve data
from an internet connection using urllib2. This software is
part of the HARVESTMan(R) program.
Author: Anand B Pilla
www.eeworm.com/read/128648/14283801
aspx listing1807.aspx
sub Page_Load(obj as Object, e as EventArgs)
'retrieve information
dim i as integer
www.eeworm.com/read/128648/14283805
aspx temp.aspx
sub Page_Load(obj as Object, e as EventArgs)
'retrieve information
dim i as integer
www.eeworm.com/read/128648/14283808
aspx temp2.aspx
sub Page_Load(obj as Object, e as EventArgs)
'retrieve information
dim i as integer
www.eeworm.com/read/127767/14335985
txt e059. getting a class object.txt
There are three ways to retrieve a Class object.
// By way of an object
Class cls = object.getClass();
// By way of a string
try {
cls = Class.forName("java.lang.St