System.Data.SQLite

Check-in [33bc5a13c8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Use a filter to retrieve attributes
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 33bc5a13c8c2ac8c7b6f2b2711aff348e5e25fd5
User & Date: rmsimpson 2005-12-19 20:46:11.000
Context
2005-12-19
20:46
Fix typo check-in: 3df863ce6e user: rmsimpson tags: sourceforge
20:46
Use a filter to retrieve attributes check-in: 33bc5a13c8 user: rmsimpson tags: sourceforge
20:45
Fix HasRows() bug check-in: 6751277128 user: rmsimpson tags: sourceforge
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteFunction.cs.
420
421
422
423
424
425
426
427

428
429
430
431
432
433
434
420
421
422
423
424
425
426

427
428
429
430
431
432
433
434







-
+







        }

        int v = arTypes.Length;
        for (int x = 0; x < v; x++)
        {
          if (arTypes[x] == null) continue;

          object[] arAtt = arTypes[x].GetCustomAttributes(false);
          object[] arAtt = arTypes[x].GetCustomAttributes(typeof(SQLiteFunctionAttribute), false);
          int u = arAtt.Length;
          for (int y = 0; y < u; y++)
          {
            at = arAtt[y] as SQLiteFunctionAttribute;
            if (at != null)
            {
              at._instanceType = arTypes[x];