Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

integration

How to insert table values from one database to another database? [closed]

January 2, 2023 by Tarik

How about this: USE TargetDatabase GO INSERT INTO dbo.TargetTable(field1, field2, field3) SELECT field1, field2, field3 FROM SourceDatabase.dbo.SourceTable WHERE (some condition)

Categories sql Tags append, integration, sql, sql-server-2005 Leave a comment

Call Python function from JavaScript code

December 28, 2022 by Tarik

All you need is to make an ajax request to your pythoncode. You can do this with jquery http://api.jquery.com/jQuery.ajax/, or use just javascript $.ajax({ type: “POST”, url: “~/pythoncode.py”, data: { param: text} }).done(function( o ) { // do something });

Categories javascript Tags function, integration, javascript, python Leave a comment

Can git be integrated with Xcode?

December 21, 2022 by Tarik

Xcode 4 supports git natively (Developer Tools State of the Union Address at WWDC 2010) Learn more here: What’s new in Xcode 4 The documentation from Apple is lengthy, but a good read.

Categories xcode Tags git, integration, version-control, xcode Leave a comment

Microservices and database joins

December 1, 2022 by Tarik

When performance or latency doesn’t matter too much (yes, we don’t always need them) it’s perfectly fine to just use simple RESTful APIs for querying additional data you need. If you need to do multiple calls to different microservices and return one result you can use API Gateway pattern. It’s perfectly fine to have redundancy … Read more

Categories database Tags database, integration, microservices Leave a comment
Newer posts
← Previous Page1 Page2 Page3

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa