Difference between revisions of "Connecting to an IBM i Database"
From MidrangeWiki
(Created page with '.NET applications can connect to an IBM i database using a couple methods. == Method 1 == == Method 2 == Category:.NET_FAQ') |
(→Method 2) |
||
Line 5: | Line 5: | ||
== Method 2 == | == Method 2 == | ||
+ | Method 2 involves manually setting up your connections and manually moving your data around for your program to process. | ||
+ | |||
+ | Pros: | ||
+ | |||
+ | * You have more control over how your data is processed. | ||
+ | * You can build SQL statements that are extremely fast. | ||
+ | |||
+ | Cons: | ||
+ | * It takes longer to code. | ||
[[Category:.NET_FAQ]] | [[Category:.NET_FAQ]] |
Revision as of 14:52, 21 July 2010
.NET applications can connect to an IBM i database using a couple methods.
Method 1
Method 2
Method 2 involves manually setting up your connections and manually moving your data around for your program to process.
Pros:
- You have more control over how your data is processed.
- You can build SQL statements that are extremely fast.
Cons:
- It takes longer to code.