Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: Oledb templates vs Ado

    I wanted to know that which one is more effecient to use Oledb templates or ADO to do database connection and recordset commands?

  • RE: Inserting multiple rows

    Thanks tcartwright. You are great!!

    You would be easily visible that I am sure and getting jobs would not be a problem for you.

  • RE: Inserting multiple rows

    tcartwright!!

    what do you mean by will write code for food. Is it just slogan?

    If slogan then do post an example. I would appreciate your help.

  • RE: Missing numbers

    I used your example and it exactly fits into it. The one you used with sets.

    Even you are right I could create one table which can have all the...

  • RE: Inserting multiple rows

    chrhedga

    How can I pass temporary table to stored procedure because I know that there are multiple rows at functional level?

    tcartwright

    are you talking that at functional level I will create...

  • RE: upto 2 decimals

    Sometimes we start thinking impossible.

    Anyway Thanks!!

  • RE: Missing numbers

    Great!!

    Thanks!!

  • RE: upto 2 decimals

    Before insert also it is like this

    20.800000000000001.

    I don't want to change it to decimal. Is there no way to fix it to 2 decimals only

  • RE: upto 2 decimals

    create procedure test1

    @val1 float,

    @val2 int

    as

    declare @val3 decimal(9,2)

    select @val3 = @val1

    insert into testtable1

    (TestField1, testfield2)

    values

    (@val3, @val2)

    -----------------------

    exec test1 20.8,12

    I did it and it is still storing it

    20.800000000000001

  • RE: upto 2 decimals

    sorry procedure name is without @

  • RE: upto 2 decimals

    Insert is thru stored procedure

    create procedure @test1

    @val1 float,

    @val2 int

    as

    insert into testtable

    (TestField1, testfield2)

    value

    (@val1, @val2)

  • RE: Book Suggestion

    Thanks!!

Viewing 12 posts - 1 through 12 (of 12 total)