86.7db法西斯是什么意思思

音箱配功放的问题!主要技术规格:前置主箱(FL,FR):功率 80W //阻抗4-8欧姆 // 灵敏度86+/-3dB // 频率响应100-20KHz中置(CEN):功率 80W // 阻抗4-8欧姆 // 灵敏度83+/-2dB // 频率响应100-20KHz环绕(_百度作业帮
音箱配功放的问题!主要技术规格:前置主箱(FL,FR):功率 80W //阻抗4-8欧姆 // 灵敏度86+/-3dB // 频率响应100-20KHz中置(CEN):功率 80W // 阻抗4-8欧姆 // 灵敏度83+/-2dB // 频率响应100-20KHz环绕(
音箱配功放的问题!主要技术规格:前置主箱(FL,FR):功率 80W //阻抗4-8欧姆 // 灵敏度86+/-3dB // 频率响应100-20KHz中置(CEN):功率 80W // 阻抗4-8欧姆 // 灵敏度83+/-2dB // 频率响应100-20KHz环绕(SL,SR):功率 40W //阻抗4-8欧姆 // 灵敏度83+/-2dB // 频率响应 100-20KHz超重低音(SW):功率 100W //阻抗4-8欧姆 // 灵敏度86+/-2dB // 频率响应60-200Hz主要是怕音箱和功放不匹配,烧坏。
配个5.1的家庭影院功放。左右声道的功率可以在150W--500W之间选择,电阻与音箱一样就可以了。
音箱和功放和音源比例大约5:3:2的投入就可以。买个5声道功放。每声道功率100w以上的就可。最好左右主声道功率大一些。
可以配置安桥的626功放!在实际使用中,现在功放和音箱烧毁,一般都出于不正常操作的前提下,比如功放音量开的过大!正常使用下,一般是不会造成烧毁的。而且在一般的前提下,民用音箱也不存在功放功率一定要大于音箱的要求!你这个音箱从参数来看,并不是价格很高的产品,所以,626应该就够用了,说实话,这音箱的灵敏度真低...>> cvi_db.h - CVI教程,用于信号采集系统的多
点击查看更多 ▼
点击收缩隐藏 ▲
cvi_db.h - CVI教程,用于信号采集系统的多
源码下载: &
#ifndef SQL_INCLUDE
#define SQL_INCLUDE 1
#if defined(INCLUDE_AFTER_WINDOWS_H) && !defined(_INC_WINDOWS)
This header must be included before utility.h and formatio.h
because this header includes Windows SDK headers.
#endif /* INCLUDE_AFTER_WINDOWS_H */
#ifdef __cplusplus
extern &C& {
#ifndef SQLFUNC
#ifdef _NI_mswin16_
#define SQLFUNC
#define SQLFUNC __stdcall
#ifndef SQLCDECL
#ifdef _NI_mswin16_
#define SQLCDECL
#if defined(__WATCOMC__) || defined(_NI_WC_)
#define SQLCDECL
#define SQLCDECL __cdecl
#ifndef SQLSTDCALL
#ifdef _NI_mswin16_
#define SQLSTDCALL
#define SQLSTDCALL __stdcall
#if defined(_CVI_) && _CVI_ & 500
#ifndef ENABLE_VARIANTS
#define ENABLE_VARIANTS 0
#define ENABLE_VARIANTS 1
#if ENABLE_VARIANTS
#include &ole2.h&
#include &stdarg.h&
/* connection, command or recordset open/closed state */
typedef enum {
DB_OBJECT_STATE_CLOSED = 0,
DB_OBJECT_STATE_OPEN = 1,
DB_OBJECT_STATE_FORCE_TO_FOUR_BYTES = -1
} tDBObjectS
/* database cursor type */
typedef enum {
DB_CURSOR_TYPE_UNSPECIFIED = -1,
DB_CURSOR_TYPE_FORWARD_ONLY = 0,
DB_CURSOR_TYPE_KEYSET = 1,
DB_CURSOR_TYPE_DYNAMIC = 2,
DB_CURSOR_TYPE_STATIC = 3,
DB_CURSOR_TYPE_FORCE_TO_FOUR_BYTES = -1
} tDBCursorT
/* record set lock type */
typedef enum {
DB_LOCK_UNSPECIFIED = -1,
DB_LOCK_READ_ONLY = 1,
DB_LOCK_PESSIMISTIC = 2,
DB_LOCK_OPTIMISTIC = 3,
DB_LOCK_BATCH_OPTIMISTIC = 4,
DB_LOCK_TYPE_FORCE_TO_FOUR_BYTES = -1
/* command type */
typedef enum {
DB_COMMAND_UNSPECIFIED = -1,
DB_COMMAND_UNKNOWN = 8,
DB_COMMAND_TEXT = 1,
DB_COMMAND_TABLE = 2,
DB_COMMAND_STORED_PROC = 4,
DB_COMMAND_FORCE_TO_FOUR_BYTES = -1
} tDBCommandT
/* edit mode of current record */
typedef enum {
DB_EDIT_MODE_NONE = 0,
DB_EDIT_MODE_IN_PROGRESS = 1,
DB_EDIT_MODE_ADD = 2,
DB_EDIT_MODE_DELETE = 4,
DB_EDIT_MODE_FORCE_TO_FOUR_BYTES = -1
} tDBEditM
/* connection mode */
typedef enum {
DB_CONN_MODE_UNKNOWN = 0,
DB_CONN_MODE_READ = 1,
DB_CONN_MODE_WRITE = 2,
DB_CONN_MODE_READ_WRITE = 3,
DB_CONN_MODE_SHARE_DENY_READ = 4,
DB_CONN_MODE_SHARE_DENY_WRITE = 8,
DB_CONN_MODE_SHARE_EXCLUSIVE = 12,
DB_CONN_MODE_SHARE_DENY_NONE = 16,
DB_CONN_MODE_FORCE_TO_FOUR_BYTES = -1
} tDBConnectionM
/* filter type for statements */
typedef enum {
DB_FILTER_NONE = 0,
DB_FILTER_PENDING = 1,
DB_FILTER_AFFECTED = 2,
DB_FILTER_FETCHED = 3,
DB_FILTER_FORCE_TO_FOUR_BYTES = -1
/* marshal option */
typedef enum {
DB_MARSHAL_OPT_ALL = 0,
DB_MARSHAL_OPT_MODIF_ONLY = 1,
DB_MARSHAL_OPT_FORCE_TO_FOUR_BYTES = -1
}tDBMarshalO
/* which records are affected by batch update */
typedef enum {
DB_AFFECT_CURRENT = 1,
DB_AFFECT_GROUP = 2,
DB_AFFECT_ALL = 3,
DB_AFFECT_FORCE_TO_FOUR_BYTES = -1
/* current record status */
typedef enum {
DB_REC_STATUS_OK = 0,
DB_REC_STATUS_NEW = 1,
DB_REC_STATUS_MODIFIED = 2,
DB_REC_STATUS_DELETED = 4,
DB_REC_STATUS_UNMODIFIED = 8,
DB_REC_STATUS_INVALID = 16,
DB_REC_STATUS_MULTIPLE_CHANGES = 64,
DB_REC_STATUS_PENDING_CHANGES = 128,
DB_REC_STATUS_CANCELED = 256,
DB_REC_STATUS_CANT_RELEASE = 1024,
DB_REC_STATUS_CONCURRENCY_VIOLATION = 2048,
DB_REC_STATUS_INTEGRITY_VILOATION = 4096,
DB_REC_STATUS_MAX_CHANGES_EXCEEDED = 8192,
DB_REC_STATUS_OBJECT_OPEN = 16384,
DB_REC_STATUS_OUT_OF_MEMORY = 32768,
DB_REC_STATUS_PERMISSION_DENIED = 65536,
DB_REC_STATUS_SCHEMA_VIOLATION = 131072,
DB_REC_STATUS_DBDELETED = 262144,
DB_REC_STATUS_FORCE_TO_FOUR_BYTES = -1
/* schema types for DBOpenSchema */
typedef enum {
DB_SCHEMA_PROVIDER_SPECIFIC = -1,
DB_SCHEMA_ASSERTS = 0,
DB_SCHEMA_CATALOGS = 1,
DB_SCHEMA_CHARACTER_SETS = 2,
DB_SCHEMA_COLLATIONS = 3,
DB_SCHEMA_COLUMNS = 4,
DB_SCHEMA_CHECK_CONSTRAINTS = 5,
DB_SCHEMA_CONSTRAINT_COLUMN_USAGE = 6,
DB_SCHEMA_CONSTRAINT_TABLE_USAGE = 7,
DB_SCHEMA_KEY_COLUMN_USAGE = 8,
DB_SCHEMA_REFERENTIAL_CONSTRAINTS = 9,
DB_SCHEMA_TABLE_CONSTRAINSTS = 10,
DB_SCHEMA_COLUMN_DOMAIN_USAGE = 11,
DB_SCHEMA_INDEXES = 12,
DB_SCHEMA_COLUMN_PRIVILEGES = 13,
DB_SCHEMA_TABLE_PRIVILEGES = 14,
DB_SCHEMA_USAGE_PRIVILEGES = 15,
DB_SCHEMA_PROCEDURE = 16,
DB_SCHEMA_SCHEMATA = 17,
DB_SCHEMA_SQL_LANGUAGES = 18,
DB_SCHEMA_STATISTICS = 19,
DB_SCHEMA_TABLES = 20,
DB_SCHEMA_TRANSLATIONS = 21,
DB_SCHEMA_PROVIDER_TYPES = 22,
DB_SCHEMA_VIEWS = 23,
DB_SCHEMA_VIEW_COLUMN_USAGE = 24,
DB_SCHEMA_VIEW_TABLE_USAGE = 25,
DB_SCHEMA_PROCEDURE_PARAMETERS = 26,
DB_SCHEMA_FOREIGN_KEYS = 27,
DB_SCHEMA_PRIMARY_KEYS = 28,
DB_SCHEMA_PROCEDURE_COLUMNS = 29,
DB_SCHEMA_FORCE_TO_FOUR_BYTES = -1
} tDBSchemaT
/* whether to use a record set only or a record set and a command */
typedef enum {
DB_USE_RECORDSET_ONLY = 2,
DB_USE_COMMAND = 1,
DB_USE_COMMAND_FORCE_TO_FOUR_BYTES = -1
} tDBUseCommandV
/* SQL parameter direction */
typedef enum
DB_PARAM_UNKNOWN = 0,
DB_PARAM_INPUT = 1,
DB_PARAM_OUTPUT = 2,
DB_PARAM_INPUT_OUTPUT = 3,
DB_PARAM_RETURN_VALUE = 4,
DB_PARAM_DIR_FORCE_TO_FOUR_BYTES = -1
}tDBParameterD
/* field/column data types */
typedef enum {
DB_EMPTY = 0,
DB_TINYINT = 16,
DB_SMALLINT = 2,
DB_INTEGER = 3,
DB_BIGINT = 20,
DB_UNSIGNEDTINYINT = 17,
DB_UNSIGNEDSMALLINT = 18,
DB_UNSIGNEDINT = 19,
DB_UNSIGNEDBIGINT = 21,
DB_FLOAT = 4,
DB_DOUBLEPRECISION = 5,
DB_CURRENCY = 6,
DB_DECIMAL = 14,
DB_NUMERIC = 131,
DB_BOOLEAN = 11,
DB_ERROR = 10,
DB_USERDEFINED = 132,
DB_VARIANT = 12,
DB_IDDISPATCH = 9,
DB_IUNKNOWN = 13,
DB_GUID = 72,
DB_DATE = 7,
/* double, days_since_.fraction_of_day */
DB_DBDATE = 133,
/* yyyymmdd */
DB_TIME = 134,
/* hhmmss */
DB_DATETIME = 135,
/* yyyymmddhhmmss plus a fraction in billionths */
DB_BSTR = 8,
DB_CHAR = 129,
DB_VARCHAR = 200,
DB_LONGVARCHAR = 201,
DB_WCHAR = 130,
DB_VARWCHAR = 202,
DB_LONGVARWCHAR = 203,
DB_BINARY = 128,
DB_VARBINARY = 204,
DB_LONGVARBINARY = 205,
DB_DATA_TYPE_FORCE_TO_FOUR_BYTES = -1
/* connection attributes */
typedef enum {
ATTR_DB_CONN_CONNECTION_STRING =
ATTR_DB_CONN_COMMAND_TIMEOUT =
ATTR_DB_CONN_CONNECTION_TIMEOUT =
ATTR_DB_CONN_VERSION =
ATTR_DB_CONN_DEFAULT_DATABASE =
0x0000000C,
ATTR_DB_CONN_ISOLATION_LEVEL =
0x0000000D,
ATTR_DB_CONN_ATTRIBUTES =
0x0000000E,
ATTR_DB_CONN_CURSOR_LOCATION =
0x0000000F,
ATTR_DB_CONN_MODE =
ATTR_DB_CONN_PROVIDER =
ATTR_DB_CONN_STATE =
ATTR_DB_CONN_CONNECTION_OBJECT =
ATTR_DB_CONN_FORCE_TO_FOUR_BYTES = -1
} tDBConnectionA
/* statement attributes */
typedef enum {
ATTR_DB_STMT_ABSOLUTE_POSITION = 0x,
ATTR_DB_STMT_ACTIVE_CONNECTION = 0x,
ATTR_DB_STMT_BOF
= 0x000003EA,
ATTR_DB_STMT_BOOKMARK
= 0x000003EB,
ATTR_DB_STMT_CACHE_SIZE
= 0x000003EC,
ATTR_DB_STMT_CURSOR_TYPE
= 0x000003ED,
ATTR_DB_STMT_EOF
= 0x000003EE,
ATTR_DB_STMT_LOCK_TYPE
ATTR_DB_STMT_MAX_RECORDS
ATTR_DB_STMT_RECORD_COUNT
ATTR_DB_STMT_EDIT_MODE
ATTR_DB_STMT_STATUS
ATTR_DB_STMT_FILTER
ATTR_DB_STMT_ABSOLUTE_PAGE
ATTR_DB_STMT_PAGE_SIZE
ATTR_DB_STMT_PAGE_COUNT
= 0x0000041A,
ATTR_DB_STMT_CURSOR_LOCATION
= 0x0000041B,
ATTR_DB_STMT_MARSHAL_OPTIONS
= 0x0000041D,
ATTR_DB_STMT_STATE
= 0x0000041E,
ATTR_DB_STMT_COMMAND_TIMEOUT
ATTR_DB_STMT_PREPARED
ATTR_DB_STMT_COMMAND_TYPE
= 0x6003000C,
ATTR_DB_STMT_NAME
= 0x6003000E,
ATTR_DB_STMT_RECORDSET_OBJECT
ATTR_DB_STMT_COMMAND_OBJECT
ATTR_DB_STMT_FORCE_TO_FOUR_BYTES = -1
} tDBStatementA
/* values for the parameter attributes attribute
/* (In ADO, this is the parameter attribute property, so it */
/* became the parameter attributes attribute here)
typedef enum {
DB_PARAM_SIGNED = 16,
DB_PARAM_NULLABLE = 64,
DB_PARAM_LONG = 128,
DB_PARAM_FORCE_TO_FOUR_BYTES = -1
} tDBParameterA
/* location of the SQL cursor */
typedef enum {
DB_CURSOR_LOC_NONE = 1,
DB_CURSOR_LOC_SERVER = 2,
DB_CURSOR_LOC_CLIENT = 3,
DB_CURSOR_LOC_FORCE_TO_FOUR_BYTES = -1
} tDBCursorL
/* possible values of the connection attributes attribute */
typedef enum {
DB_XACT_COMMIT_RETAINING = 131072,
DB_XACT_ABORT_RETAINING = 262144,
DB_XACT_FORCE_TO_FOUR_BYTES = -1
} tDBXactA
/* isolation level */
typedef enum {
DB_ISOLATION_LEVEL_UNSPECIFIED = -1,
DB_ISOLATION_LEVEL_CHAOS = 16,
DB_ISOLATION_LEVEL_READ_UNCOMMITTED = 256,
DB_ISOLATION_LEVEL_READ_COMMITTED = 4096,
DB_ISOLATION_LEVEL_REPEATABLE_READ = 65536,
DB_ISOLATION_LEVEL_SERIALIZABLE
= 1048576,
DB_ISOLATION_LEVEL_FORCE_TO_FOUR_BYTES = -1
} tDBIsolationL
/* possible parameter attributes */
typedef enum {
ATTR_DB_PARAM_VALUE =
ATTR_DB_PARAM_NAME =
ATTR_DB_PARAM_TYPE =
ATTR_DB_PARAM_DIRECTION =
ATTR_DB_PARAM_PRECISION =
ATTR_DB_PARAM_NUMERIC_SCALE = 0x6003000A,
ATTR_DB_PARAM_SIZE =
0x6003000C,
ATTR_DB_PARAM_ATTRIBUTES = 0x6003000F,
ATTR_DB_PARAM_FORCE_TO_FOUR_BYTES = -1
}tDBParamA
/* possible values for the column attributes attribute */
typedef enum {
DB_COLUMN_MAY_DEFER = 2,
DB_COLUMN_UPDATABLE = 4,
DB_COLUMN_UNKNOWN_UPDATEABLE= 8,
DB_COLUMN_FIXED = 16,
DB_COLUMN_IS_NULLABLE = 32,
DB_COLUMN_MAY_BE_NULL = 64,
DB_COLUMN_LONG = 128,
DB_COLUMN_ROW_ID = 256,
DB_COLUMN_ROW_VERSION = 512,
DB_COLUMN_CACHE_DEFFERED = 4096,
DB_COLUMN_FORCE_TO_FOUR_BYTES = -1
}tDBColumnA
/* possible column attributes */
typedef enum {
ATTR_DB_COLUMN_VALUE
ATTR_DB_COLUMN_ATTRIBUTES
= 0x0000040C,
ATTR_DB_COLUMN_NAME
= 0x0000044C,
ATTR_DB_COLUMN_TYPE
= 0x0000044E,
ATTR_DB_COLUMN_DEFINED_SIZE
= 0x0000044F,
ATTR_DB_COLUMN_ORIGINAL_VALUE= 0x,
ATTR_DB_COLUMN_UNDERLYING_VALUE=0x,
ATTR_DB_COLUMN_ACTUAL_SIZE
ATTR_DB_COLUMN_PRECISION
ATTR_DB_COLUMN_NUMERIC_SCALE = 0x,
ATTR_DB_COLUMN_FORCE_TO_FOUR_BYTES = -1
}tDBColumnA
/* Constants for DBInit.
#define DB_INIT_SINGLETHREADED
#define DB_INIT_MULTITHREADED 1
#define ATTR_DB_MIN 1
#define ATTR_DB_USE_COMMAND 1
#define ATTR_DB_LOCK_TYPE 2
#define ATTR_DB_CURSOR_TYPE 3
#define ATTR_DB_COMMAND_TYPE 4
#define ATTR_DB_DUMMY_PTR 5
#define ATTR_DB_MAX 5
#define DB_FAILED_TO_LOAD_DLL
#define DB_COULD_NOT_FIND_FUNC
#define DB_COULD_NOT_CREATE_MUTEX
/* Error constants */
#define DB_SMALLER_THAN_COLUMN_WIDTH -99
/* not used */
#define DB_ALIAS_NOT_SAVED -98
/* not used */
#define DB_STMT_NOT_SAVED -98
/* not used */
#define DB_CONNECTION_NOT_SAVED -97
/* not used */
#define DB_BETA_EXPIRED -96
#define DB_CANT_FIND_ALIAS -94
/* not used */
#define DB_CANT_FIND_STMT -94
#define DB_CANT_FIND_CONNECTION -93
#define DB_CANT_DETERMINE_NUM_RECS -92
#define DB_SYNONYM_NOT_SUPPORTED -91
#define DB_UNKNOWN_TABLES_FLAG -90
#define DB_CANT_FIND_MAP -89
#define DB_UNEXPECTED_NULL_PTR -88
#define DB_INVALID_ATTRIBUTE -87
#define DB_INVALID_COLUMN_NUMBER -86
#define DB_UNSUPPORTED_TYPE -85
#define DB_CANT_GET_NATIVE_ERROR -84
#define DB_INVALID_PARAMETER_ATTRIBUTE -83
#define DB_INVALID_COLUMN_ATTRIBUTE -81
#define DB_COLUMN_ATTR_READ_ONLY -80
#define DB_STMT_ATTR_READ_ONLY -79
#define DB_INVALID_STMT_ATTRIBUTE -78
#define DB_INVALID_FOR_COMMAND -77
#define DB_INVALID_FOR_RECORDSET -76
#define DB_REQUIRES_RECORDSET -75
#define DB_REQUIRES_COMMAND -74
#define DB_CONN_ATTR_READ_ONLY -73
#define DB_INVALID_CONN_ATTRIBUTE -72
#define DB_FORMAT_ERROR -71
#define DB_FORMAT_IGNORE_INCOMPAT -70
/* used internally only */
#define DB_FORMAT_IGNORE_NO_DATA_FORMAT -69 /* used internally only */
#define DB_START_REC_TOO_BIG -68
#define DB_FIELD_NUMBER_TOO_BIG -67
#define DB_NOT_ENOUGH_RECORDS -66
#define DB_UNSUPPORTED_SOURCE_TYPE -64
#define DB_NEGATIVE_SIZE -63
#define DB_ALREADY_BOUND -62
#define DB_SINGLE_THREAD_INIT_FAILED -61
#define DB_ILLEGAL_MULTIPLE_MAP_ACTIVATIONS -60
/* These are error codes for the multi-thread critical section stuff */
#define DB_CS_OUT_OF_MEMORY -299
#define DB_CS_INVALID_PARAMETER -298
#define DB_CS_SYSTEM_ERROR -297
#define DB_CS_NOT_INIT_OR_DELETED -296
#define DB_CS_NOT_OWNED -295
#define DB_CS_ALREADY_INIT -294
#define DB_ODBC_ERROR
#define DB_AUTOMATION_ERROR
/* Error detected by OLE Automation */
#define DB_DBSYS_ERROR
/* Error detected by the underlying
/* database system or driver.
#define DB_LOCK_CHANGE_REC
/* Attempt to lock a record and */
/* the lock was obtained, but the */
/* record has been changed since it */
/* was originally read.
This can */
/* only occur for DBMSs that require */
/* a log file. */
#define DB_LOCK_MULTI_REC
/* Attempt to lock a record and */
/* the lock was obtained, but more */
/* than one record was locked. This */
/* occured because the primary key */
/* fields caused more than one */
/* record to be selected. */
#define DB_LOCK_NO_REC
/* Attempt to lock a record, but */
/* no record in the database was */
/* selected by the primary key, */
/* the record has been deleted by */
/* another user, or another user */
/* has changed the value of a */
/* key field. */
#define DB_NO_DATA_CHANGE
/* Do not update this column/field */
/* Set the status variable of a
/* bound variable to this value to */
/* prevent the column/field from
/* being updated by DBPutRecord
#define DB_LOCK_CHANGE_REC
/* Not used */
#define DB_LOCK_MULTI_REC
/* Not used */
#define DB_LOCK_NO_REC
/* Not used */
#define DB_EOF
/* No more records to read. */
#define DB_USER_CANCELLED
/* User cancelled out of the logon */
/* dialog box. */
#define DB_OUT_OF_MEMORY
/* Insufficient memory for operation. */
#define DB_NULL_DATA
/* Null value.
Returned as the */
/* length from a qeDataLen call. */
#define DB_TRUNCATION
/* The buffer passed in to hold */
/* a result is not large */
/* enough to hold the result. */
/* A partial result has been */
/* returned in the buffer. */
#define DB_SUCCESS
/* Success. */
#define DB_SUCCESS_WITH_INFO
/* Success with information (warning). */
#define DB_NO_DATA_WITH_INFO
/* EOF with additional information */
/* (usually ESC during a fetch). */
#define DB_LIBSYS_ERROR
/* Error that occurs when a library */
/* can't be loaded. Or when the SLM */
/* on the Mac can't be initialized */
#define DB_SRC_AVAILABLE
/* type types for DBTables */
#define DB_TBL_TABLE 0x0001
#define DB_TBL_VIEW 0x0002
#define DB_TBL_PROCEDURE 0x0004
#define DB_TBL_SYSTABLE 0x0008
#define DB_TBL_SYNONYM 0x0010
#define DB_TBL_DATABASE 0x0080
#define DB_NO_FLAGS 0x0000
#define DB_UNIQUE_INDEXES 0x0001
#define DB_ACCURATE_STATS 0x0002
#define DB_INDEX_CLUSTERED 1
#define DB_INDEX_HASHED 2
#define DB_INDEX_OTHER 3
#define DB_CASCADE 0
#define DB_RESTRICT 1
#define DB_SET_NULL 2
#ifdef _CVI_
#pragma EnableLibraryRuntimeChecking
/* connection functions */
extern int SQLFUNC DBConnect(char *connectionString);
extern int SQLFUNC DBSetAttributeDefaultFromParmInfo(int hdbc, int attribute, va_list parmInfo);
extern int SQLCDECL DBSetAttributeDefault(int hdbc, int attribute, ...);
extern int SQLFUNC DBDisconnect(int hdbc);
extern int SQLFUNC DBSetDatabase(int hdbc, char *database);
/* Mapping method functions */
extern int SQLFUNC DBBeginMap(int hdbc);
extern int SQLFUNC DBMapColumnToChar(int mapHandle, char *colName,
unsigned long varMaxLen, char *var, long *varStatus, char *fmt);
extern int SQLFUNC DBMapColumnToShort(int mapHandle, char *colName, short *var,
long *varStatus);
extern int SQLFUNC DBMapColumnToInt(int mapHandle, char *colName, int *var,
long *varStatus);
extern int SQLFUNC DBMapColumnToFloat(int mapHandle, char *colName,float *var,
long *varStatus);
extern int SQLFUNC DBMapColumnToDouble(int mapHandle, char *colName, double *var,
long *varStatus);
extern int SQLFUNC DBMapColumnToBinary(int mapId, char *colName,
unsigned long varLen, void *var, long *varStatus);
extern int SQLFUNC DBActivateMap(int mapHandle, char *tableName);
extern int SQLFUNC DBDeactivateMap(int mapHandle);
extern int SQLFUNC DBCreateTableFromMap(int mapHandle, char *tableName);
/* Execute SQL statement */
extern int SQLFUNC DBActivateSQL(int hdbc, char *sqlStatement);
extern int SQLFUNC DBImmediateSQL(int hdbc, char *sqlStatement);
/* Bind Columns method functions */
extern int SQLFUNC DBBindColChar(int hstmt, int colNum, unsigned long stringSize, char *valPtr, long *varStatus, char *fmt);
extern int SQLFUNC DBBindColShort(int hstmt, int colNum, short *valPtr, long *varStatus);
extern int SQLFUNC DBBindColInt(int hstmt, int colNum, int *valPtr, long *varStatus);
extern int SQLFUNC DBBindColFloat(int hstmt, int colNum, float *valPtr, long *varStatus);
extern int SQLFUNC DBBindColDouble(int hstmt, int colNum, double *valPtr, long *varStatus);
extern int SQLFUNC DBBindColBinary(int hstmt, int colNum,
unsigned long binSize, void* valPtr, long* varStatus);
/* direct Get and Put functions */
extern int SQLFUNC DBPutColShort(int hstmt, int colNum, short value);
extern int SQLFUNC DBPutColFloat(int hstmt, int colNum, float value);
extern int SQLFUNC DBPutColDouble(int hstmt, int colNum, double value);
extern int SQLFUNC DBPutColInt(int hstmt, int colNum, int value);
extern int SQLFUNC DBPutColChar(int hstmt, int colNum, char *valPtr,
char* format);
extern int SQLFUNC DBPutColNull(int hstmt, int colNum);
extern int SQLFUNC DBPutColBinary(int hstmt, int colNum, void* value,
unsigned int numBytes);
#if ENABLE_VARIANTS
extern int SQLFUNC DBPutColVariant(int hstmt, int colNum, VARIANT value);
extern int SQLFUNC DBGetColShort(int hstmt, int colNum, short *value);
extern int SQLFUNC DBGetColInt(int hstmt, int colNum, int* value);
extern int SQLFUNC DBGetColFloat(int hstmt, int colNum, float* value);
extern int SQLFUNC DBGetColDouble(int hstmt, int colNum, double* value);
extern int SQLFUNC DBGetColChar(int hstmt, int colNum, char **valPtr, char* format);
extern int SQLFUNC DBGetColCharBuffer(int hstmt, int colNum, char *buffer,
int bufferLen, char* format);
extern int SQLFUNC DBGetColBinaryBuffer(int hstmt, int colNum, void* buffer,
unsigned int bufferLen);
extern int SQLFUNC DBGetColBinary(int hstmt, int colNum, void** value);
#if ENABLE_VARIANTS
extern int SQLFUNC DBGetColVariant(int hstmt, int colNum, VARIANT* value);
/* End Execution of SQL statement (whether started with DBActivateMap
/* or DBActivateSQL.
extern int SQLFUNC DBDeactivateSQL(int hstmt);
/* Fetch Functions */
extern int SQLFUNC DBFetchNext(int hstmt);
extern int SQLFUNC DBFetchPrev(int hstmt);
extern int SQLFUNC DBFetchRandom(int hstmt,long recordNumber);
extern int SQLFUNC DBAllowFetchAnyDirection(int hdbc, int enable);
/* Record operations */
extern int SQLFUNC DBCreateRecord(int hstmt);
extern int SQLFUNC DBDeleteRecord(int hstmt);
extern int SQLFUNC DBPutRecord(int hstmt);
extern int SQLFUNC DBCancelRecordChanges(int hstmt);
extern int SQLFUNC DBUpdateBatch(int hstmt, tDBAffect affectWhichRecords);
/* Information functions */
extern int SQLFUNC DBNumberOfRecords(int hstmt);
extern int SQLFUNC DBNumberOfModifiedRecords(int hstmt);
extern int SQLFUNC DBNumberOfColumns(int hstmt);
extern char * SQLFUNC DBColumnName(int hstmt, int columnNumber);
extern int SQLFUNC DBColumnType(int hstmt, int columnNumber);
extern int SQLFUNC DBColumnWidth(int hstmt, int columnNumber);
/* Transactions */
extern int SQLFUNC DBBeginTran(int hdbc);
extern int SQLFUNC DBCommit(int hdbc);
extern int SQLFUNC DBRollback(int hdbc);
/* Errors/Warnings */
extern int SQLFUNC DBError(void);
extern int SQLFUNC DBWarning(void);
extern int SQLFUNC DBNativeError(void);
extern char * SQLFUNC DBErrorMessage(void);
/* information functions */
extern int SQLFUNC DBSources(int option);
extern int SQLFUNC DBDatabases(int hdbc);
extern int SQLFUNC DBTables(int hdbc, char *qualifier_pattern, char *user_pattern,
char *table_pattern, int flags);
extern int SQLFUNC DBIndexes (int hdbc, char *tableName, short flags);
extern int SQLFUNC DBPrimaryKeys (int hdbc, char *tableName);
extern int SQLFUNC DBForeignKeys (int hdbc, char *pkTableName,
char *fkTableName);
#if ENABLE_VARIANTS
/* records as an array of variants */
extern int SQLFUNC DBGetVariantArray(int hstmt, VARIANT** theArray,
unsigned int* numRecs, unsigned int* numFields);
extern int SQLFUNC DBGetVariantArrayValue(VARIANT* theArray,
unsigned int desiredType, unsigned int numRecs, unsigned int numFields,
unsigned int recordNum, unsigned int fieldNum, void* dataValue);
extern int SQLFUNC DBGetVariantArrayColumn(VARIANT* theArray,
unsigned int numRecs, unsigned int numFields, unsigned int desiredType,
unsigned int field, unsigned int startRec, int numRecsToFetch,
void* dataValues);
extern int SQLFUNC DBFreeVariantArray(VARIANT* theArray, int clearMembers,
unsigned int numRecs, unsigned int numFields);
extern int SQLFUNC DBOpenSchema(int hdbc, tDBSchemaType schemaType, VARIANT restrictions);
/* Parameterised commands */
extern int SQLFUNC DBPrepareSQL(int hdbc, char *sqlStatement);
extern int SQLFUNC DBRefreshParams(int hstmt);
extern int SQLFUNC DBCreateParamInt(int hstmt, char *name,
tDBParameterDirection direction, int value);
extern int SQLFUNC DBCreateParamShort(int hstmt, char *name,
tDBParameterDirection direction, short value);
extern int SQLFUNC DBCreateParamFloat(int hstmt, char *name,
tDBParameterDirection direction, float value);
extern int SQLFUNC DBCreateParamDouble(int hstmt, char *name,
tDBParameterDirection direction, double value);
extern int SQLFUNC DBCreateParamChar(int hstmt, char *name,
tDBParameterDirection direction, char* value, int bufferLen);
extern int SQLFUNC DBCreateParamBinary(int hstmt, char *name,
tDBParameterDirection direction, void* value, int bufferSize);
extern int SQLFUNC DBSetParamInt(int hstmt, int index, int value);
extern int SQLFUNC DBSetParamShort(int hstmt, int index, short value);
extern int SQLFUNC DBSetParamFloat(int hstmt, int index, float value);
extern int SQLFUNC DBSetParamDouble(int hstmt, int index, double value);
extern int SQLFUNC DBSetParamChar(int hstmt, int index, char* value,
char* format);
#if ENABLE_VARIANTS
extern int SQLFUNC DBSetParamVariant(int hstmt, int index, VARIANT value);
extern int SQLFUNC DBSetParamBinaryBuffer(int hstmt, int index, void* value,
unsigned int numBytes);
extern int SQLFUNC DBClearParam(int hstmt, int index);
extern int SQLFUNC DBGetParamInt(int hstmt, int index, int* value);
extern int SQLFUNC DBGetParamShort(int hstmt, int index, short* value);
extern int SQLFUNC DBGetParamFloat(int hstmt, int index, float* value);
extern int SQLFUNC DBGetParamDouble(int hstmt, int index, double* value);
extern int SQLFUNC DBGetParamChar(int hstmt, int index, char** value,
char* format);
extern int SQLFUNC DBGetParamCharBuffer(int hstmt, int index, char* buffer,
int bufferLen, char* format);
#if ENABLE_VARIANTS
extern int SQLFUNC DBGetParamVariant(int hstmt, int index, VARIANT* value);
extern int SQLFUNC DBGetParamBinary(int hstmt, int index, void** value);
extern int SQLFUNC DBGetParamBinaryBuffer(int hstmt, int index, void* buffer,
unsigned int bufferLen);
extern int SQLFUNC DBGetParamAttribute(int hstmt, int index, tDBParamAttr attr,
void* value);
extern int SQLFUNC DBSetParamAttributeFromParmInfo(int hstmt, int index,
int attribute, va_list parmInfo);
extern int SQLCDECL DBSetParamAttribute (int hstmt, int index,
tDBParamAttr attribute, ...);
extern int SQLFUNC DBGetColumnAttribute(int hstmt, int index,
tDBColumnAttr attr, void* value);
extern int SQLFUNC DBSetColumnAttributeFromParmInfo(int hstmt, int index,
int attribute, va_list parmInfo);
extern int SQLCDECL DBSetColumnAttribute (int hstmt, int index,
tDBColumnAttr attribute, ...);
extern int SQLFUNC DBExecutePreparedSQL(int hstmt);
extern int SQLFUNC DBClosePreparedSQL(int hstmt);
/* Separate new and open statement.
Required to set statement attributes */
extern int SQLFUNC DBNewSQLStatement(int hdbc, char* sqlStatement);
extern int SQLFUNC DBGetStatementAttribute(int hstmt,
tDBStatementAttributes attribute, void *value);
extern int SQLFUNC DBSetStmtAttributeFromParmInfo(int hstmt, long attribute,
va_list parmInfo);
extern int SQLCDECL DBSetStatementAttribute(int hstmt,
tDBStatementAttributes attribute, ...);
extern int SQLFUNC DBOpenSQLStatement(int hstmt);
extern int SQLFUNC DBMoreResults(int hstmt);
extern int SQLFUNC DBCloseSQLStatement(int hstmt);
extern int SQLFUNC DBDiscardSQLStatement(int hstmt);
/* Separate new and open connection.
Required to set connection attributes */
extern int SQLFUNC DBNewConnection(void);
extern int SQLFUNC DBOpenConnection(int hdbc);
extern int SQLFUNC DBGetConnectionAttribute(int hdbc,
tDBConnectionAttr attribute, void *value);
extern int SQLFUNC DBSetConnAttributeFromParmInfo(int hdbc, long attribute,
va_list parmInfo);
extern int SQLCDECL DBSetConnectionAttribute(int hdbc,
tDBConnectionAttr attribute, ...);
extern int SQLFUNC DBCloseConnection(int hdbc);
extern int SQLFUNC DBDiscardConnection(int hdbc);
/* Version and compatibility functions */
void SQLCDECL DBFree(void *memBlock);
extern int SQLFUNC DBGetSQLToolkitVersion(void);
extern int SQLFUNC DBSetBackwardCompatibility(int version);
extern int SQLFUNC DBInit(int options);
/* These functions translate between active X connection, */
/* command and recordset objects and SQL Toolkit connection */
/* and statement handles.
These functions are UNSUPPORTED
typedef int
/* Get automation object handles from toolkit handles */
extern int SQLFUNC DBGetCommandObjAndRecordsetObjFromHStmt(int hstmt,
int *commandObj, int *recordsetObj);
extern int SQLFUNC DBGetConnectionObjFromHdbc(long hdbc, int* connectionObj);
/* Get toolkit handles from automation object handles.
If the toolkit
/* handles do not exist, they are created.
extern int SQLFUNC DBConnectionHandleFromConnectionObj(CAObjHandle connectionObj);
extern int SQLFUNC DBStatementHandleFromRecordsetObj(CAObjHandle recordsetObj);
/* For StatementHandleFromCommandObject, if the command does not have a */
/* toolkit handle AND has an associated recordset, you must also supply */
/* the recordset object. OTHERWISE you can pass zero as the recordset.
extern int SQLFUNC DBStatementHandleFromCommandObj(CAObjHandle commandObj,
CAObjHandle recordsetObj);
/* Discard toolkit handles.
Use these functions to remove the toolkit
/* handles you create for externally supplied connection, command or */
/* recordset objects which will be closed and discarded outside the
/* toolkit.
DO NOT call these functions if you use
toolkit functions
/* to close or discard the object.
extern int SQLFUNC DBDiscardConnectionHandle(int hdbc);
extern int SQLFUNC DBDiscardStatementHandle(int hstmt);
extern void SQLFUNC DBDiscardAllObjects(void);
#ifdef __cplusplus
源码下载: &
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
名称大小日期
&210.35 kB22-08-01 09:45
&fl45.fp220.74 kB22-08-01 09:45
&19.98 kB22-08-01 09:45
&fl45.sub39.31 kB22-08-01 09:45
&220.06 kB22-08-01 09:45
&hp33120a.fp243.76 kB22-08-01 09:45
&26.31 kB22-08-01 09:45
&hp33120a.sub36.45 kB22-08-01 09:45
&118.97 kB22-08-01 09:45
&hp662xa.fp189.44 kB22-08-01 09:45
&17.34 kB22-08-01 09:45
&hp662xa.sub23.35 kB22-08-01 09:45
&162.50 kB22-08-01 09:45
&hpe1463a.fp154.09 kB22-08-01 09:45
&15.44 kB22-08-01 09:45
&hpe1463a.sub18.27 kB22-08-01 09:45
&4.59 kB22-08-01 09:45
&scope.fp6.13 kB22-08-01 09:45
&314.00 B22-08-01 09:45
&scope.prj5.44 kB22-08-01 09:45
&769.52 kB22-08-01 09:45
&tktds754.fp477.75 kB22-08-01 09:45
&77.46 kB22-08-01 09:45
&tktds754.sub169.58 kB22-08-01 09:45
&1.78 kB22-08-01 09:45
&sample12_2.exe79.50 kB22-08-01 09:45
&1.20 kB22-08-01 09:45
&sample12_2.prj4.25 kB22-08-01 09:45
&sample12_2.uir1.41 kB22-08-01 09:45
&52.11 kB22-08-01 09:44
&RS.fp128.68 kB22-08-01 09:44
&11.15 kB22-08-01 09:44
&RS.sub10.11 kB22-08-01 09:45
&431.00 B22-08-01 09:45
&sample12_1.prj4.47 kB22-08-01 09:45
&cvi_db.fp391.78 kB22-08-01 09:44
&27.67 kB22-08-01 09:44
&cvi_db.lib73.31 kB22-08-01 09:44
&7.89 kB22-08-01 09:44
&sample11_1.exe99.50 kB22-08-01 09:44
&3.31 kB22-08-01 09:44
&sample11_1.prj6.62 kB22-08-01 09:44
&sample11_1.uir9.88 kB22-08-01 09:44
&WEATHER.DBF49.86 kB22-08-01 09:44
&flowchrt.dbf302.00 B22-08-01 09:44
&samples.mdb160.00 kB22-08-01 09:44
&student.mdb128.00 kB22-08-01 09:44
&testres.dbf345.00 B22-08-01 09:44
&5.37 kB22-08-01 09:44
&sample10_1.exe81.50 kB22-08-01 09:44
&1.76 kB22-08-01 09:44
&sample10_1.prj4.10 kB22-08-01 09:44
&sample10_1.uir5.26 kB22-08-01 09:44
&42.21 kB22-08-01 09:48
&cvi.fp185.87 kB22-08-01 09:48
&24.72 kB22-08-01 09:48
&cvi.obj13.98 kB22-08-01 09:48
&cvi.sub315.00 B22-08-01 09:48
&9.46 kB22-08-01 09:48
&sample9_1.exe117.00 kB22-08-01 09:48
&2.56 kB22-08-01 09:48
&sample9_1.prj6.25 kB22-08-01 09:48
&sample9_1.uir5.27 kB22-08-01 09:48
&2.14 kB22-08-01 09:48
&268.00 B22-08-01 09:48
&sample8_3.dll206.00 kB22-08-01 09:48
&sample8_3.lib4.49 kB22-08-01 09:48
&sample8_3.prj5.23 kB22-08-01 09:48
&2.48 kB22-08-01 09:48
&223.00 B22-08-01 09:48
&testDLL.exe78.00 kB22-08-01 09:48
&testDLL.prj3.69 kB22-08-01 09:48
&sample8_3.lib1.50 kB22-08-01 09:48
&sample8_3.lib4.49 kB22-08-01 09:48
&sample8_3.lib1.50 kB22-08-01 09:48
&sample8_3.lib4.46 kB22-08-01 09:48
&2.14 kB22-08-01 09:48
&268.00 B22-08-01 09:48
&sample8_2.lib4.49 kB22-08-01 09:48
&sample8_2.prj4.87 kB22-08-01 09:48
&2.48 kB22-08-01 09:48
&350.00 B22-08-01 09:48
&testlib.prj2.64 kB22-08-01 09:48
&187.00 B22-08-01 09:47
&sample8_1.prj3.91 kB22-08-01 09:48
&sampleDLL8_1.dll200.07 kB22-08-01 09:48
&87.00 B22-08-01 09:48
&sampleDLL8_1.lib2.67 kB22-08-01 09:48
&sampleDLL8_1.lib1.50 kB22-08-01 09:47
&sampleDLL8_1.lib2.67 kB22-08-01 09:47
&1.57 kB22-08-01 09:47
&670.00 B22-08-01 09:47
&sampleDLL8_1.dsp4.29 kB22-08-01 09:47
&sampleDLL8_1.dsw547.00 B22-08-01 09:47
&sampleDLL8_1.ncb41.00 kB22-08-01 09:47
&sampleDLL8_1.opt48.50 kB22-08-01 09:47
&sampleDLL8_1.plg1.25 kB22-08-01 09:47
&291.00 B22-08-01 09:47
&778.00 B22-08-01 09:47
&sampleDLL8_1.lib1.50 kB22-08-01 09:47
&sampleDLL8_1.lib2.66 kB22-08-01 09:47
&cvi.ico1.05 kB22-08-01 09:47
&2.89 kB22-08-01 09:47
&1.41 kB22-08-01 09:47
&taskbar.prj5.56 kB22-08-01 09:47
&taskbar.uir2.77 kB22-08-01 09:47
&4.47 kB22-08-01 09:47
&sample7_2.exe81.50 kB22-08-01 09:47
&1.67 kB22-08-01 09:47
&sample7_2.prj5.22 kB22-08-01 09:47
&sample7_2.uir2.66 kB22-08-01 09:47
&&新建&0.00 B100% 22-08-01
&3.84 kB22-08-01 09:47
&sample7_1.exe81.00 kB22-08-01 09:47
&1.98 kB22-08-01 09:47
&sample7_1.prj5.45 kB22-08-01 09:47
&sample7_1.uir4.37 kB22-08-01 09:47
&22.66 kB22-08-01 09:47
&3.81 kB22-08-01 09:47
&ini.prj2.71 kB22-08-01 09:47
&ini.uir7.87 kB22-08-01 09:47
&14.00 B22-08-01 09:47
&2.14 kB22-08-01 09:47
&MyLib.def90.00 B22-08-01 09:47
&MyLib.doc6.48 kB22-08-01 09:47
&MyLib.fp3.35 kB22-08-01 09:47
&268.00 B22-08-01 09:47
&MyLib.hpj89.00 B22-08-01 09:47
&MyLib.odl1.23 kB22-08-01 09:47
&MyLib.rtf10.36 kB22-08-01 09:47
&MyLib.whh268.00 B22-08-01 09:47
&422.00 B22-08-01 09:47
&sample6_1.exe210.00 kB22-08-01 09:47
&sample6_1.prj5.93 kB22-08-01 09:47
&2.48 kB22-08-01 09:47
&5.88 kB22-08-01 09:47
&sample5_3.exe108.00 kB22-08-01 09:47
&2.78 kB22-08-01 09:47
&sample5_3.prj4.14 kB22-08-01 09:47
&sample5_3.uir10.93 kB22-08-01 09:47
&60.00 B22-08-01 09:47
&60.00 B22-08-01 09:47
&2.29 kB22-08-01 09:47
&receive.exe80.00 kB22-08-01 09:47
&1.65 kB22-08-01 09:47
&receive.prj4.17 kB22-08-01 09:47
&receive.uir3.02 kB22-08-01 09:47
&2.13 kB22-08-01 09:47
&send.exe80.00 kB22-08-01 09:47
&1.45 kB22-08-01 09:47
&send.prj4.15 kB22-08-01 09:47
&send.uir2.48 kB22-08-01 09:47
&60.00 B22-08-01 09:47
&11.47 kB22-08-01 09:47
&2.17 kB22-08-01 09:47
&receive.exe80.00 kB22-08-01 09:47
&1.65 kB22-08-01 09:47
&receive.prj4.12 kB22-08-01 09:47
&receive.uir3.02 kB22-08-01 09:47
&1.64 kB22-08-01 09:47
&send.exe79.50 kB22-08-01 09:47
&1.45 kB22-08-01 09:47
&send.prj4.11 kB22-08-01 09:47
&send.uir2.48 kB22-08-01 09:47
&9.83 kB22-08-01 09:45
&sample4_11.exe252.50 kB22-08-01 09:45
&2.51 kB22-08-01 09:45
&sample4_11.prj5.06 kB22-08-01 09:45
&sample4_11.uir7.19 kB22-08-01 09:45
&B001.BMP7.80 kB22-08-01 09:45
&B002.BMP8.38 kB22-08-01 09:45
&B003.BMP9.69 kB22-08-01 09:45
&B004.BMP12.19 kB22-08-01 09:45
&B005.BMP13.68 kB22-08-01 09:45
&B006.BMP14.20 kB22-08-01 09:45
&B007.BMP14.72 kB22-08-01 09:45
&B008.BMP9.74 kB22-08-01 09:45
&B009.BMP7.80 kB22-08-01 09:45
&sample4_.001181.30 kB22-08-01 09:45
&6.53 kB22-08-01 09:45
&sample4_10.exe272.50 kB22-08-01 09:45
&3.83 kB22-08-01 09:45
&sample4_10.prj7.03 kB22-08-01 09:45
&sample4_10.uir270.50 kB22-08-01 09:45
&setup.exe458.22 kB22-08-01 09:45
&bydate.ico318.00 B22-08-01 09:45
&go.ico318.00 B22-08-01 09:45
&help.ico318.00 B22-08-01 09:45
&stop.ico318.00 B22-08-01 09:45
&7.05 kB22-08-01 09:46
&3.00 kB22-08-01 09:46
&scrldemo.prj3.03 kB22-08-01 09:46
&scrldemo.uir9.35 kB22-08-01 09:46
&7.35 kB22-08-01 09:45
&1.79 kB22-08-01 09:45
&animdemo.prj4.38 kB22-08-01 09:45
&animdemo.uir348.53 kB22-08-01 09:45
&6.60 kB22-08-01 09:45
&10.99 kB22-08-01 09:45
&3.39 kB22-08-01 09:45
&oglarm.prj8.00 kB22-08-01 09:45
&oglarm.uir37.14 kB22-08-01 09:45
&13.91 kB22-08-01 09:45
&54.87 kB22-08-01 09:46
&6.39 kB22-08-01 09:46
&ogldemo.prj4.11 kB22-08-01 09:46
&ogldemo.uir29.61 kB22-08-01 09:46
&8.01 kB22-08-01 10:11
&1.81 kB22-08-01 09:46
&ogldraw.prj5.45 kB22-08-01 09:46
&ogldraw.uir2.61 kB22-08-01 09:46
&22.75 kB22-08-01 09:46
&2.43 kB22-08-01 09:46
&oglsim.prj4.13 kB22-08-01 09:46
&oglsim.uir6.25 kB22-08-01 09:46
&10.56 kB22-08-01 09:46
&1.85 kB22-08-01 09:46
&simple.prj4.39 kB22-08-01 09:46
&simple.uir3.05 kB22-08-01 09:46
&5.06 kB22-08-01 09:46
&2.79 kB22-08-01 09:46
&chartdem.prj4.78 kB22-08-01 09:46
&chartdem.uir12.56 kB22-08-01 09:46
&3.29 kB22-08-01 09:46
&895.00 B22-08-01 09:46
&2.62 kB22-08-01 09:46
&1.69 kB22-08-01 09:46
&daqndemo.prj2.98 kB22-08-01 09:46
&daqndemo.uir6.74 kB22-08-01 09:46
&1.16 kB22-08-01 09:46
&2.57 kB22-08-01 09:46
&simpdemo.prj4.37 kB22-08-01 09:46
&simpdemo.uir41.79 kB22-08-01 09:46
&2.47 kB22-08-01 09:46
&2.97 kB22-08-01 09:46
&tabdemo.prj5.10 kB22-08-01 09:46
&tabdemo.uir1.19 MB22-08-01 09:46
&19.76 kB22-08-01 09:46
&239.00 B22-08-01 09:46
&3.89 kB22-08-01 09:46
&tabprpui.uir24.84 kB22-08-01 09:46
&6.75 kB22-08-01 09:46
&6.84 kB22-08-01 09:46
&3.98 kB22-08-01 09:46
&movedemo.prj4.32 kB22-08-01 09:46
&movedemo.uir14.90 kB22-08-01 09:46
&5.09 kB22-08-01 09:46
&2.13 kB22-08-01 09:46
&pwdemo.prj3.02 kB22-08-01 09:46
&pwdemo.uir4.13 kB22-08-01 09:46
&17.32 kB22-08-01 09:46
&3.34 kB22-08-01 09:46
&tooldemo.ico1.05 kB22-08-01 09:46
&tooldemo.prj4.53 kB22-08-01 09:46
&tooldemo.uir8.29 kB22-08-01 09:46
&bydate.bmp334.00 B22-08-01 09:46
&bydate.ico318.00 B22-08-01 09:46
&bydate.pcx1.09 kB22-08-01 09:46
&byname.bmp334.00 B22-08-01 09:46
&byname.ico318.00 B22-08-01 09:46
&byname.pcx1,021.00 B22-08-01 09:46
&bysize.bmp334.00 B22-08-01 09:46
&bysize.ico318.00 B22-08-01 09:46
&bysize.pcx1.08 kB22-08-01 09:46
&bytype.bmp334.00 B22-08-01 09:46
&bytype.ico318.00 B22-08-01 09:46
&bytype.pcx1,016.00 B22-08-01 09:46
&cascade.bmp334.00 B22-08-01 09:46
&cascade.ico318.00 B22-08-01 09:46
&cascade.pcx384.00 B22-08-01 09:46
&copy.bmp334.00 B22-08-01 09:46
&copy.ico318.00 B22-08-01 09:46
&copy.pcx365.00 B22-08-01 09:46
&cut.bmp334.00 B22-08-01 09:46
&cut.ico318.00 B22-08-01 09:46
&cut.pcx334.00 B22-08-01 09:46
&find.bmp334.00 B22-08-01 09:46
&find.ico318.00 B22-08-01 09:46
&find.pcx341.00 B22-08-01 09:46
&glasses.bmp334.00 B22-08-01 09:46
&glasses.ico318.00 B22-08-01 09:46
&glasses.pcx323.00 B22-08-01 09:46
&go.bmp334.00 B22-08-01 09:46
&go.ico318.00 B22-08-01 09:46
&go.pcx386.00 B22-08-01 09:46
&help.bmp334.00 B22-08-01 09:46
&help.ico318.00 B22-08-01 09:46
&help.pcx375.00 B22-08-01 09:46
&new.bmp334.00 B22-08-01 09:46
&new.ico318.00 B22-08-01 09:46
&new.pcx398.00 B22-08-01 09:46
&open.bmp1.40 kB22-08-01 09:46
&open.ico318.00 B22-08-01 09:46
&open.pcx387.00 B22-08-01 09:46
&paste.bmp334.00 B22-08-01 09:46
&paste.ico318.00 B22-08-01 09:46
&paste.pcx370.00 B22-08-01 09:46
&print.bmp334.00 B22-08-01 09:46
&print.ico318.00 B22-08-01 09:46
&print.pcx356.00 B22-08-01 09:46
&redo.bmp334.00 B22-08-01 09:46
&redo.ico318.00 B22-08-01 09:46
&redo.pcx335.00 B22-08-01 09:46
&replace.bmp334.00 B22-08-01 09:46
&replace.ico318.00 B22-08-01 09:46
&replace.pcx345.00 B22-08-01 09:46
&save.bmp334.00 B22-08-01 09:46
&save.ico318.00 B22-08-01 09:46
&save.pcx384.00 B22-08-01 09:46
&saveall.bmp334.00 B22-08-01 09:46
&saveall.ico318.00 B22-08-01 09:46
&saveall.pcx1.06 kB22-08-01 09:46
&stop.bmp334.00 B22-08-01 09:46
&stop.ico318.00 B22-08-01 09:46
&stop.pcx384.00 B22-08-01 09:46
&tile.bmp334.00 B22-08-01 09:46
&tile.ico318.00 B22-08-01 09:46
&tile.pcx381.00 B22-08-01 09:46
&undo.bmp334.00 B22-08-01 09:46
&undo.ico318.00 B22-08-01 09:46
&undo.pcx376.00 B22-08-01 09:46
&13.03 kB22-08-01 09:46
&2.16 kB22-08-01 09:46
&asyncdem.prj4.06 kB22-08-01 09:46
&asyncdem.uir5.56 kB22-08-01 09:46
&22.66 kB22-08-01 09:46
&3.81 kB22-08-01 09:46
&ini.prj4.78 kB22-08-01 09:46
&ini.uir7.87 kB22-08-01 09:46
&12.58 kB22-08-01 09:46
&2.40 kB22-08-01 09:46
&list.prj4.07 kB22-08-01 09:46
&list.uir4.73 kB22-08-01 09:46
&26.20 kB22-08-01 09:46
&2.65 kB22-08-01 09:46
&menudemo.prj6.08 kB22-08-01 09:46
&menudemo.uir5.30 kB22-08-01 09:46
&74.66 kB22-08-01 09:46
&menuutil.fp21.88 kB22-08-01 09:46
&3.69 kB22-08-01 09:46
&menuutil.obj22.38 kB22-08-01 09:46
&9.28 kB22-08-01 09:45
&sample4_8.exe82.50 kB22-08-01 09:45
&2.84 kB22-08-01 09:45
&sample4_8.prj4.08 kB22-08-01 09:45
&sample4_8.uir9.56 kB22-08-01 09:45
&4.81 kB22-08-01 09:45
&sample4_7.exe81.00 kB22-08-01 09:45
&3.03 kB22-08-01 09:45
&sample4_7.prj4.02 kB22-08-01 09:45
&sample4_7.uir8.21 kB22-08-01 09:45
&2.05 kB22-08-01 09:45
&sample4_6.exe79.50 kB22-08-01 09:45
&595.00 B22-08-01 09:45
&sample4_6.prj4.02 kB22-08-01 09:45
&sample4_6.uir3.56 kB22-08-01 09:45
&exit.pcx27.98 kB22-08-01 09:45
&3.61 kB22-08-01 09:45
&sample4_5.exe80.00 kB22-08-01 09:45
&sample4_5.prj3.43 kB22-08-01 09:45
&5.13 kB22-08-01 09:45
&sample4_4.exe80.50 kB22-08-01 09:45
&1.78 kB22-08-01 09:45
&sample4_4.prj4.03 kB22-08-01 09:45
&sample4_4.uir2.45 kB22-08-01 09:45
&6.44 kB22-08-01 09:45
&sample4_3.exe81.00 kB22-08-01 09:45
&2.66 kB22-08-01 09:45
&sample4_3.prj4.02 kB22-08-01 09:45
&sample4_3.uir29.89 kB22-08-01 09:45
&退出.pcx27.98 kB22-08-01 09:45
&6.86 kB22-08-01 09:45
&sample4_2.exe81.00 kB22-08-01 09:45
&2.38 kB22-08-01 09:45
&sample4_2.prj4.14 kB22-08-01 09:45
&sample4_2.uir6.26 kB22-08-01 09:45
&4_1.exe84.00 kB22-08-01 09:45
&4_1.prj4.00 kB22-08-01 09:45
&15.78 kB22-08-01 09:45
&sample4_1.exe84.00 kB22-08-01 09:45
&4.63 kB22-08-01 09:45
&sample4_1.prj4.02 kB22-08-01 09:45
&sample4_1.uir124.13 kB22-08-01 09:45
&退出.pcx27.98 kB22-08-01 09:45
&3.43 kB22-08-01 09:45
&sample3_1.exe81.00 kB22-08-01 09:45
&1.92 kB22-08-01 09:45
&sample3_1.prj4.45 kB22-08-01 09:45
&sample3_1.uir4.45 kB22-08-01 09:45
&1.24 kB22-08-01 09:45
&4.48 kB22-08-01 09:45
&sample2_2.exe80.50 kB22-08-01 09:45
&2.02 kB22-08-01 09:45
&sample2_2.prj4.45 kB22-08-01 09:45
&sample2_2.uir5.16 kB22-08-01 09:45
&210.35 kB22-08-01 09:45
&fl45.fp220.74 kB22-08-01 09:45
&19.98 kB22-08-01 09:45
&fl45.obj114.56 kB22-08-01 09:45
&fl45.sub39.31 kB22-08-01 09:45
&21.00 B22-08-01 09:45
&1.78 kB22-08-01 09:45
&sample2_1.exe311.50 kB22-08-01 09:45
&1.85 kB22-08-01 09:45
&sample2_1.prj5.08 kB22-08-01 09:45
&sample2_1.uir3.18 kB22-08-01 09:45
&251.13 kB22-08-01 09:45
&toolbox.fp200.53 kB22-08-01 09:45
&26.81 kB22-08-01 09:45
&toolbox.obj144.21 kB22-08-01 09:45
&&Debug&0.00 B12-06-07 15:54
&&buttons&0.00 B12-06-07 15:54
&&database&0.00 B12-06-07 15:54
&&borland&0.00 B12-06-07 15:54
&&msvc&0.00 B12-06-07 15:54
&&symantec&0.00 B12-06-07 15:54
&&watcom&0.00 B12-06-07 15:54
&&borland&0.00 B12-06-07 15:54
&&msvc&0.00 B12-06-07 15:54
&&sampleDLL8_1&0.00 B12-06-07 15:54
&&symantec&0.00 B12-06-07 15:54
&&watcom&0.00 B12-06-07 15:54
&&buttons&0.00 B12-06-07 15:54
&&scrollbar&0.00 B12-06-07 15:54
&&animate&0.00 B12-06-07 15:54
&&cviogl&0.00 B12-06-07 15:54
&&daqchart&0.00 B12-06-07 15:54
&&daq_num&0.00 B12-06-07 15:54
&&easytab&0.00 B12-06-07 15:54
&&movectrl&0.00 B12-06-07 15:54
&&password&0.00 B12-06-07 15:54
&&toolbar&0.00 B12-06-07 15:54
&&toolbox&0.00 B12-06-07 15:54
&&12_3&0.00 B12-06-07 15:54
&&12_2&0.00 B12-06-07 15:54
&&12_1&0.00 B12-06-07 15:54
&&11_1&0.00 B12-06-07 15:54
&&10_1&0.00 B12-06-07 15:54
&&9_1&0.00 B12-06-07 15:54
&&8_3&0.00 B12-06-07 15:54
&&8_2&0.00 B12-06-07 15:54
&&8_1&0.00 B12-06-07 15:54
&&7_3&0.00 B12-06-07 15:54
&&7_2&0.00 B12-06-07 15:54
&&7_1&0.00 B12-06-07 15:54
&&6_2&0.00 B12-06-07 15:54
&&6_1&0.00 B12-06-07 15:54
&&5_3&0.00 B12-06-07 15:54
&&5_2&0.00 B12-06-07 15:54
&&5_1&0.00 B12-06-07 15:54
&&4_11&0.00 B12-06-07 15:54
&&4_10&0.00 B12-06-07 15:54
&&4_9&0.00 B12-06-07 15:54
&&4_8&0.00 B12-06-07 15:54
&&4_7&0.00 B12-06-07 15:54
&&4_6&0.00 B12-06-07 15:54
&&4_5&0.00 B12-06-07 15:54
&&4_4&0.00 B12-06-07 15:54
&&4_3&0.00 B12-06-07 15:54
&&4_2&0.00 B12-06-07 15:54
&&4_1&0.00 B12-06-07 15:54
&&3_1&0.00 B12-06-07 15:54
&&2_2&0.00 B12-06-07 15:54
&&2_1&0.00 B12-06-07 15:54
&&labwindows&0.00 B0 0%
Sponsored links
23 篇源代码 21 篇源代码 18 篇源代码 13 篇源代码 9 篇源代码
285 篇源代码 173 篇源代码 48 篇源代码 42 篇源代码 36 篇源代码
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
CF仔没有找到您要的代码,请去留下您的问题吧,可能会有大神帮助你哦!
该用户暂时未开通博客
请按 Ctrl+D 键添加到收藏夹。

我要回帖

更多关于 xd股票是什么意思 的文章

 

随机推荐