Advertisement

Results for "Category: String Manipulation"

ASP_Volume2 #41174
C mailing list database with algorithm

This program allows the user to create a file and add or change mailing list records to it. The program is able to load files that have the same record structure and concantenate them if required. The user can then save the data stored in memory to a new file or to overwrite an existing file. SIDE EFFECTS: There were side effects when I ported from win95 to XP, which have been commented out. WHATS IN THE ZIP: *database.c : C code file. *debugfile.txt : Redirected the printer to this file for debugging purposes (so I didn't waste paper). *mail.db : An example of a saved file. *PDR_for_project7.doc : The data table, algorithm, and output for the code.

ASP_Volume2 #41179
ADO & VC++, NO ODBC

ADO & VC++ Connection I'm not using ODBC, VC++ tries to connect to Access file with ADO Objects. I know part of the code has been submitted before, but the current project it's opening in a Window instead of DOS console. Plus I'm not using ODBC stuff. Thanks =)

ASP_Volume2 #41240
Database and CGI in C++

This code shows you how to access MS Access MDB database files and use SELECT stements to retreive records from tables. I've seen alot of poor examples here and i couldnt get most of them to work or working to do what i needed. Also, this gives you an easy way to make a cgi type program that you can use on your web server.

ASP_Volume2 #41384
Database :: Blood Bank

This code is simply a database , this can store records , view all records , delete records , show statistics and do many more functions. For more information please contact zohairkhawaja@hotmail.com, ehmedk@hotmail.com

ASP_Volume2 #41417
ADO programming in C++

This article is intended to cover the basics of working with a database through ADO without diving into MFC, .NET, or any other deep Microsoft framework.

ASP_Volume2 #41439
ADO LIKE DAO IN VISUAL BASIC BY VISUAL C++ SECURE YOUR DATABASE *.mdb FILE BY PASSWORD

example of use ADO to CONNECT to your database *.mdbfile on the hard disk without need ODBC and treat it like DAO in visual basic

ASP_Volume2 #41540
Address Book v.1

Simple address book coded in C.

ASP_Volume2 #41554
Bus Reservation System

A simple bus reservation system, using dynamic 3D arrays and a simple class example! Don't hesitate to rate for it. I worked so hard for it!

ASP_Volume2 #41584
Spread sheet file based data management system with Built in Screen Saver

This Project is basically a simple-to-use full-featured object-oriented spread sheet file data management system that will allow the user to open, save, browse, edit, make graphs, and apply functions to any kind of alphanumeric data. This product will run under the DOS operating system. Also, if you wait for 20 seconds, an automaitically BUILT IN SCREEN SAVER will be activated, that can be stopped by pressing the ENTER. REMEMBER THAT SCREEN SAVER WILL BE ACTIVATED AFTER 20 SECONDS. THEREFORE, YOU MUST ATLEAST MOVE YOUR MOUSE OR PERFORM THE KEY OPPERATIONS, IN ORDER TO AVOID THE ACTIVATION OF BUILT IN SCREEN SAVER. The spread sheet file based data management system, as it’s named suggested, is to be used by a user to handle any kind of data in a form of spread sheet. The user can view or edit a spread sheet with a complete facility of saving and retrieving files. The user interacts with the product’s functions (like filing, tools, etc.) by using the MOUSE, and clicking on the pull-down menus of File, tools, graph, and Help. Under each one of these pull-down selections, a user can select functions such as openning, closing, saving, new file, add row, add column, multiply row or column, displaying bar or pie charts, and displaying help. Now, to interact with the spread sheet made, the user can enter data on each cell (like 1st row and 1st column, 2nd row and 5th column, etc.) by selecting the required cell and entering the data that can be alphabetic, numeric or alphanumeric. PLEASE SAVE THIS FILE IN THE FOLLOWING PATH OF TURBO C AND MAKE SURE THAT BGI FOLDER IS ALSO INCLUDED IN THE "TC" DIRECTORY: C:\\TC\\BIN\\zar.cpp

ASP_Volume2 #41672
Digital Dairy

This is a computerised digital dairy.

ASP_Volume2 #41693
Convert your ODBC connections to OLE DB

Looking for faster performance? If you have an older database driven ASP app, it probably uses an ODBC DSN in its connection string to reach the database. It probably looks alot like this: "DSN=myDSNName;". If you see this you should immediately upgrade the code to ADO/OLEDB--Microsoft's new standard. Not only will this help you keep the code current, but it will run faster and take up less memory. Below are the connection strings for OLEDB/ADO for both Access and SQL Server--the two most common databases for IIS platforms. If you are using another database, you'll need to consult your db's ADO Provider's documentation for the proper connection string.

ASP_Volume2 #41746
Display SQL Results

Display a page that allows you to type in a SQL Query statement, and display the results in HTML Table format. The number of field parameters and field names are immaterial. It will display the results in an easy to read format. Great for customer reports. The Code will not allow an Update or Delete query.

ASP_Volume2 #41747
ADO Database Sample

Teaches you how to allow your users to build a dynamic sql statment for searching your database, paging (nice little auto paging function I wrote included), dynamic sorting, etc... Access 2000 sample database included.

ASP_Volume2 #41748
ADO Example 2

Demonstrate how to use ADO and ASP, includes Paging, Editing, Searching, Stored Procedures with MS Access and more.

ASP_Volume2 #41751
Survey/Quiz

Simple ASP codes showing "Survey" and online quizes

ASP_Volume2 #41758
Task Manager

This is a task manager online. What this does is allow a group of people working on a rather large, or even simple project to put down tasks or ideas that are related to their project. I use this for my school assignments and the current web site that a group of my friends are currently working on. This Task manager has a whole lot of features that have not yet been implemented but you have the ability to add tasks, asign yourself to tasks and also edit tasks (if you are working on them). On the main screen you will see a list of all the tasks sorted by importance. If you wish to sort the list by a different order, just click one of the headings ('In Charge' 'Date') etc. You will also notice that according to the level of importance, the colour differs (red for level 1, yellow for level 2, green for level 3). This code teaches how to use SQL statements to access, update and insert data into a database. It teaches how to use the server() function in asp, and also teaches how to use cookies for login purposes. This code is fully commented, and if you would like any more information or wish to contact me, please email me at festie69@hotmail.com

ASP_Volume2 #41775
ADO GetRows example

You can use ADO GetRows to output and ADO recordset to an array. This is often useful in n-tier applications when you are moving data between tiers--or if you want to persist your data in another way. http://adozone.cnw.com/default.htm

ASP_Volume2 #41776
Batch Update using ADO

ADO has a great batch update feature that not many people take advantage of. You can use it to update many records at once without making multiple round trips to the database. Here is how to use it.

ASP_Volume2 #41777
ADO Transactions

Transactions are atomic operations that allow you to do multiple operations on a database as one operation. For example, if you were creating a banking application in which you deducted $100 from one account and added it to another account, you wouldn't want the operation to fail right in the middle, because the money would be 'lost'! The solution is to wrap the SQL in a transaction. If the operation is aborted in the middle (the pc gets shut off for example) the database will rollback the changes so that the initial account was never debited the $100. This will make you feel good, especially if its your bank account!

ASP_Volume2 #41783
Database Basics: Part I

Since ASP is especially good at reading and writing to databases, let's start with a very simple database and scripts that we'll eventually build into a guestbook... Reprinted with permission from http://www.web-savant.com/users/kathi/asp

Languages
Top Categories
Global Discovery