Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Datatype bugfix |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
d608262a37d35147488f91f7ff91eb93 |
User & Date: | rmsimpson 2006-05-16 14:08:39.000 |
Context
2006-05-16
| ||
14:24 | 1.0.29.0 check-in: 4489be8494 user: rmsimpson tags: sourceforge | |
14:08 | Datatype bugfix check-in: d608262a37 user: rmsimpson tags: sourceforge | |
13:39 | 1.0.29.0 check-in: 9eac19ba95 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/SQLiteDataReader.cs.
︙ | ︙ | |||
475 476 477 478 479 480 481 | for (int n = 0; n < _fieldCount; n++) { row = tbl.NewRow(); // Default settings for the column row[SchemaTableColumn.ColumnName] = GetName(n); row[SchemaTableColumn.ColumnOrdinal] = n; | | | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | for (int n = 0; n < _fieldCount; n++) { row = tbl.NewRow(); // Default settings for the column row[SchemaTableColumn.ColumnName] = GetName(n); row[SchemaTableColumn.ColumnOrdinal] = n; row[SchemaTableColumn.ColumnSize] = SQLiteConvert.DbTypeToColumnSize(GetSQLiteType(n).Type); row[SchemaTableColumn.NumericPrecision] = 255; row[SchemaTableColumn.NumericScale] = 255; row[SchemaTableColumn.ProviderType] = GetSQLiteType(n).Type; row[SchemaTableColumn.IsLong] = (GetSQLiteType(n).Type == DbType.Binary); row[SchemaTableColumn.AllowDBNull] = true; row[SchemaTableOptionalColumn.IsReadOnly] = false; row[SchemaTableOptionalColumn.IsRowVersion] = false; |
︙ | ︙ | |||
502 503 504 505 506 507 508 | temp = _command.Connection._sql.ColumnTableName(_activeStatement, n); if (String.IsNullOrEmpty(temp) == false) row[SchemaTableColumn.BaseTableName] = temp; temp = _command.Connection._sql.ColumnDatabaseName(_activeStatement, n); if (String.IsNullOrEmpty(temp) == false) row[SchemaTableOptionalColumn.BaseCatalogName] = temp; | < < < | 502 503 504 505 506 507 508 509 510 511 512 513 514 515 | temp = _command.Connection._sql.ColumnTableName(_activeStatement, n); if (String.IsNullOrEmpty(temp) == false) row[SchemaTableColumn.BaseTableName] = temp; temp = _command.Connection._sql.ColumnDatabaseName(_activeStatement, n); if (String.IsNullOrEmpty(temp) == false) row[SchemaTableOptionalColumn.BaseCatalogName] = temp; // If we have a table-bound column, extract the extra information from it if (String.IsNullOrEmpty(strColumn) == false) { string collSeq; string dataType; bool bNotNull; bool bPrimaryKey; |
︙ | ︙ |