debasisdas 580 Posting Genius Featured Poster

How you define last transaction amount ?

debasisdas 580 Posting Genius Featured Poster

why you need to use GROUP BY to select the last transaction amount ?

debasisdas 580 Posting Genius Featured Poster

Please find more details here and here.

debasisdas 580 Posting Genius Featured Poster

You can't use GROUP BY clause without using any grouping function in Oracle.

debasisdas 580 Posting Genius Featured Poster

Also consider not to use date as a field name as a best practise. That is a predefined keyword in any database.

debasisdas 580 Posting Genius Featured Poster

What happens when you execute the code ?

Are you getting any error ?

debasisdas 580 Posting Genius Featured Poster

You seriously needs to read books for all that.

debasisdas 580 Posting Genius Featured Poster

what software you want to make ?

debasisdas 580 Posting Genius Featured Poster

Try this.

select EmployeeID, sum(TransactionAmount) as TotalAmount from employee where EmployeeID IN ('E123','E234') group by EmployeeID;
debasisdas 580 Posting Genius Featured Poster

How RFID will work with a book ?

debasisdas 580 Posting Genius Featured Poster

try this

Dim dtmTest As Date
dtmTest = DateValue(Now)

next you need to compare the date with desired date using DateDiff.

debasisdas 580 Posting Genius Featured Poster

Really difficult to guess anything without detailed information.

debasisdas 580 Posting Genius Featured Poster

Another approach (using database).

If using oracle as database, compile this procedure in database.

Call the same from VB 6.0 using ADO like this.

The second link is a sample only, to show how to call a oracle stored procedure from VB 6.0..

debasisdas 580 Posting Genius Featured Poster

Try using SHELL.

debasisdas 580 Posting Genius Featured Poster

you need to check the system date and compare with desired date on start up

debasisdas 580 Posting Genius Featured Poster

Why RFID is required for Library management system ?

debasisdas 580 Posting Genius Featured Poster

The simplest thing to do is to check system date on start up.

suppose you want for 30 days from today ---say 25_sep-2011.

in the start up check if the date is less than the above date.

if it is more display an error message.

for a better and full proof solution you need to write into system registry.

debasisdas 580 Posting Genius Featured Poster

May be you are dreaming, you need to wake up and check your application code.

debasisdas 580 Posting Genius Featured Poster

You need to read this.

debasisdas 580 Posting Genius Featured Poster

No

debasisdas 580 Posting Genius Featured Poster

Write your country name correctly.

wenbnet commented: yes, u r right +0
debasisdas 580 Posting Genius Featured Poster

I did not ask what you want ,but what you have tried so far.

debasisdas 580 Posting Genius Featured Poster

what exactly you need to implement ?

debasisdas 580 Posting Genius Featured Poster

Why not loop through the items in the array by index..

debasisdas 580 Posting Genius Featured Poster

you need to convert the string to date format as defined in your database table column.

debasisdas 580 Posting Genius Featured Poster

I didn't .where?

In post no 5 of this thread.

just use

SELECT table1.col1,table1.col2,table2.col1
FROM table1,table2

without any join.

but output may not be as expected as the result is a cross product in absence of any join..

debasisdas 580 Posting Genius Featured Poster

lets see the query that you are working on.

debasisdas 580 Posting Genius Featured Poster

Your question has nothing to do with VB.net application. The business logic needs to be implemented entirely at database level.

debasisdas 580 Posting Genius Featured Poster

Try to export the access table into a CSV file and import/load the same in SQL Server.

debasisdas 580 Posting Genius Featured Poster

you need to read this.

debasisdas 580 Posting Genius Featured Poster

then why are you using JOIN.

Go for a Cartesian product.

debasisdas 580 Posting Genius Featured Poster

you want without join, right ?

debasisdas 580 Posting Genius Featured Poster

You need to format the DateTimePicker1.Text before passing the same into database for inserting.

debasisdas 580 Posting Genius Featured Poster

show some effort, to get any help.

debasisdas 580 Posting Genius Featured Poster

what you have tried so far ?

debasisdas 580 Posting Genius Featured Poster

you have to create a procedure / function for that.

debasisdas 580 Posting Genius Featured Poster

I am only getting results for converting a MS Accss 'database' to a SQL 'database'. ...... I just want to convert one MS Access 'table' to SQL Server (2008) 'table'.

What is the difference ?

Netcode commented: none +5
debasisdas 580 Posting Genius Featured Poster

so, what is the problem ?

debasisdas 580 Posting Genius Featured Poster

what is the query that you are working on ?

debasisdas 580 Posting Genius Featured Poster

Welcome to Daniweb.

debasisdas 580 Posting Genius Featured Poster

Welcome aboard.

debasisdas 580 Posting Genius Featured Poster

You need to use common dialog control.

debasisdas 580 Posting Genius Featured Poster

You need to use ADO library in VB 6.

Read more here and here.

debasisdas 580 Posting Genius Featured Poster

for that you need to frame the query dynamically at run time.

try this.

PREPARE sql_stmt FROM "your query";
EXECUTE sql_stmt;
debasisdas 580 Posting Genius Featured Poster

post your table structure and the query that you are working on.

debasisdas 580 Posting Genius Featured Poster

more information please .

debasisdas 580 Posting Genius Featured Poster

Is it an attendance system ?

debasisdas 580 Posting Genius Featured Poster

try the fiollowing

SELECT * INTO OUTFILE 'result.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM table_name;

also read this.

debasisdas 580 Posting Genius Featured Poster

Are you asking what a query is?

He is asking for spoon feeding.

debasisdas 580 Posting Genius Featured Poster

do you have index on id column ?