Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by christhedonstar

  1. christhedonstar

    Propose new location in Outlook

    I thought we already tried that - but will try again tomorrow...
  2. christhedonstar

    Propose new location in Outlook

    Then the recipients would have two copies of the same meeting..Wouldn't they?
  3. christhedonstar

    Sybase query via python not working when using arguments

    furthermore to clarify these two statements: curs.execute(sqlToRun, [ 'first', 'second', 'third' ]) curs.execute(sqlToRun, [ 'forth', 'fifth', 'sixth' ]) Does that mean that the server doesn't need to translate sqlToRun to internal format twice?
  4. christhedonstar

    Sybase query via python not working when using arguments

    Cool Thanks. So the speed benefit only comes if you use the same cursor object correct? What factor of speed benefit would we be talking here?
  5. christhedonstar

    Propose new location in Outlook

    Hi In outlook 2007 there is a propose new time button. Can you do the same for location somehow? Thanks, Chris
  6. christhedonstar

    Sybase query via python not working when using arguments

    thanks only just read these replies, but came to the same conclusion earlier. But I thought it was down to our implementation - not the documentation being wrong!! This for me is not much better than using sqlToRun = 'Select %s %s %s' % ('first', 'second', 'third') Although documentation said...
  7. christhedonstar

    Sybase query via python not working when using arguments

    So.... sqlToRun = '''Select @test ''' curs.execute(sqlToRun, {'@test': 'me'}) print curs.fetchall() returns [('@test',)] sqlToRun = '''Select @test ''' curs.execute(sqlToRun, { 'me': '@test'}) print curs.fetchall() returns [('me',)] sqlToRun = '''Select @test '''...
  8. christhedonstar

    Sybase query via python not working when using arguments

    Great suggestion am trying now. Just doing select 'me' which should return me
  9. christhedonstar

    Sybase query via python not working when using arguments

    sqlToRun was in first instance SELECT TOP 1 * FROM ADDRESS WHERE ad_city = @city In the second it was SELECT TOP 1 * FROM ADDRESS WHERE ad_city = 'NEW YORK' So in the first I thought @city would have been replaced with 'NEW YORK' by the excute method... Maybe I can turn on logging in...
  10. christhedonstar

    Sybase query via python not working when using arguments

    0.39 is the version. Cheers. So its not that...
  11. christhedonstar

    Sybase query via python not working when using arguments

    These are the things I've tried: >>> Sybase.CS_VER_STRING 9144 >>> Sybase.CS_CURRENT_VERSION 112 >>> Sybase.CS_PACKAGE_CMD 152 >>> Sybase.CS_TDS_VERSION 9105 >>> Sybase.CS_VER_STRING 9144 >>> Sybase.sys() TypeError: 'module' object is not callable >>> Sybase.sys <module 'sys' (built-in)> >>>...
  12. christhedonstar

    Sybase query via python not working when using arguments

    Yes it the cursor object. I couldn't figure out how to tell which version we were using (I thought of that also). There were were a few version properties on the module but most of them returned much higher numbers than 0.39. I thought that maybe 0.39 was the package version and that what I...
  13. christhedonstar

    144Mbps more like 12Mbps

    I changed to channel 13 and get around 24Mbps.
  14. christhedonstar

    Sybase query via python not working when using arguments

    sqlToRun = '''SELECT TOP 1 * FROM ADDRESS WHERE ad_city = @city ''' curs.execute(sqlToRun, {'@city': 'NEW YORK' }) #sqlToRun = '''SELECT TOP 1 * FROM ADDRESS WHERE ad_city = 'NEW YORK' ''' #curs.execute(sqlToRun) inlineSqlResults = curs.fetchall() print inlineSqlResults...
  15. christhedonstar

    144Mbps more like 12Mbps

    Hi, I have a Dell laptop with N wireless card in. I have a belkin draft n wifi router (belkin). I have qnap raid nas wired into the router via cat 5 cable. My laptop says it has got a 144Mps connection but when I try to copy a file from the laptop to the nas it does it at about 12Mbps (~1.5...

Part and Inventory Search

Back
Top